summaryrefslogtreecommitdiffstats
path: root/eurephiadm
diff options
context:
space:
mode:
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)