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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=185
2 changed files with 6 additions and 2 deletions

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"

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"