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-06 19:16:58 +0200
commitcf15edc1f6e21297544371d2fa997adb633d61eb (patch)
treef8ae5cd9b87dda918dda3fa292b996e159973b40 /eurephiadm
parente980ffbd45e2a2e7a3437295a94bd9667a3b49f3 (diff)
downloadeurephia-1.0.0.tar.gz
eurephia-1.0.0.tar.xz
eurephia-1.0.0.zip
Added install rules for man pagesv1.0.0
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)