summaryrefslogtreecommitdiffstats
path: root/eurephiadm
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2010-07-06 19:16:58 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2010-07-30 11:02:56 +0200
commit6562a30519273ff9de151ce5488d0dd0c9eb5725 (patch)
tree33cefb778c65f601daae3ba061817d316f35a716 /eurephiadm
parent31128d1d1c2d9de2d3cf6d137e9e80fb00865569 (diff)
downloadeurephia-6562a30519273ff9de151ce5488d0dd0c9eb5725.tar.gz
eurephia-6562a30519273ff9de151ce5488d0dd0c9eb5725.tar.xz
eurephia-6562a30519273ff9de151ce5488d0dd0c9eb5725.zip
Added install rules for man pages
Diffstat (limited to 'eurephiadm')
-rw-r--r--eurephiadm/CMakeLists.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/eurephiadm/CMakeLists.txt b/eurephiadm/CMakeLists.txt
index ed30c53..51f9d83 100644
--- a/eurephiadm/CMakeLists.txt
+++ b/eurephiadm/CMakeLists.txt
@@ -52,12 +52,28 @@ ADD_EXECUTABLE(eurephiadm
commands/fwprofiles.c
../common/eurephiadb_session_common.c
)
+
+# Man pages to install
+SET(MAN_PAGES
+ man/eurephiadm.7
+ man/eurephiadm-adminaccess.7
+ man/eurephiadm-attempts.7
+ man/eurephiadm-blacklist.7
+ man/eurephiadm-certs.7
+ man/eurephiadm-config.7
+ man/eurephiadm-fwprofiles.7
+ man/eurephiadm-lastlog.7
+ man/eurephiadm-usercerts.7
+ man/eurephiadm-users.7
+)
+
# Link in the following dynamic libraries with eurephiadm.
# ${EXTRA_LIBS} contains libxml2, libxslt and openssl library names
TARGET_LINK_LIBRARIES(eurephiadm dl crypto common ${EXTRA_LIBS})
# Install rules for eurephiadm
INSTALL(TARGETS eurephiadm RUNTIME DESTINATION ${BINDIR})
+INSTALL(FILES ${MAN_PAGES} DESTINATION ${MANDIR}/man7)
# Also run the rules for the XSLT templates eurephiadm needs
SUBDIRS(../xslt/eurephiadm)