0c3983b25a
. add bsd-style MLINKS to minix man set, restoring aliases (e.g. man add64 -> int64) . update daily cron script to run makewhatis and restore makewhatis in man Makefile (makedb), restores functionality of man -k . netbsd imports of man, mdocml, makewhatis, libutil, apropos . update man.conf with manpage locations, restoring man [-s] <section> . throws out some obsolete manpages
15 lines
353 B
Makefile
15 lines
353 B
Makefile
.include <bsd.own.mk>
|
|
|
|
SUBDIR= man1 man1x man2 man3 man4 man5 man6 man7 man8 man9
|
|
|
|
WHATISDBDIR?= /usr/man
|
|
|
|
makedb:
|
|
${TOOL_MAKEWHATIS} ${DESTDIR}${WHATISDBDIR}
|
|
.if ${MKUNPRIVED} != "no"
|
|
echo ".${WHATISDBDIR}/whatis.db type=file mode=0444 uname=${BINOWN} gname=${BINGRP}" \
|
|
| ${METALOG.add}
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|
|
.include <bsd.sys.mk>
|