summaryrefslogtreecommitdiffstats
path: root/customdhcpcd/src/mk/man.mk
diff options
context:
space:
mode:
Diffstat (limited to 'customdhcpcd/src/mk/man.mk')
-rw-r--r--customdhcpcd/src/mk/man.mk14
1 files changed, 0 insertions, 14 deletions
diff --git a/customdhcpcd/src/mk/man.mk b/customdhcpcd/src/mk/man.mk
deleted file mode 100644
index 5d9bf26..0000000
--- a/customdhcpcd/src/mk/man.mk
+++ /dev/null
@@ -1,14 +0,0 @@
-# rules to install manpages
-# Copyright 2008 Roy Marples <roy@marples.name>
-
-MANPREFIX?= /usr/share
-MANDIR?= ${MANPREFIX}/man/man
-MANMODE?= 0444
-MINSTALL?= ${INSTALL} -m ${MANMODE}
-
-man: ${MAN}
-
-# We cheat as all our pages go into section 8
-maninstall: man
- ${INSTALL} -d ${DESTDIR}${MANDIR}8
- for man in ${MAN}; do ${MINSTALL} $$man ${DESTDIR}${MANDIR}8; done