Changes to make `maninstall' work.

This commit is contained in:
Jordan K. Hubbard
1993-07-23 02:58:20 +00:00
parent 9bd9789ec0
commit 47dee7af0b
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -28,8 +28,10 @@ ${MANP}: ${.CURDIR}/apropos.man
-e 's,%manpath_config_file%,${manpath_config_file},' \
${.CURDIR}/apropos.man > $@
install: ${TARG} ${MANP}
install: ${TARG} maninstall
install -c -o bin -g bin -m 555 ${TARG} /usr/bin
maninstall: ${MANP}
install -c -o bin -g bin -m 444 ${MANP} /usr/share/man/man1
.include "../Makefile.inc"
+3 -1
View File
@@ -28,8 +28,10 @@ ${MANP}: ${.CURDIR}/whatis.man
-e 's,%manpath_config_file%,${manpath_config_file},' \
${.CURDIR}/whatis.man > ${MANP}
install: ${TARG} ${MANP}
install: ${TARG} maninstall
install -c -o bin -g bin -m 555 ${TARG} /usr/bin
maninstall: ${MANP}
install -c -o bin -g bin -m 444 ${MANP} /usr/share/man/man1
.include "../Makefile.inc"