8faa40d1a0
This change among other things improve search capabilities over the manpages allowing fine grain query. A new build option WITHOUT_MANDOCDB has been added to keep the ancient version of the database and the tools. The plan is to entirely remove this option before 11.0-RELEASE. Differential Revision: https://reviews.freebsd.org/D2603
18 lines
299 B
Makefile
18 lines
299 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SCRIPTS= man.sh
|
|
LINKS= ${BINDIR}/man ${BINDIR}/manpath
|
|
|
|
MAN= man.1 manpath.1 man.conf.5
|
|
|
|
.if ${MK_MANDOCDB} == no
|
|
LINKS+= ${BINDIR}/man ${BINDIR}/apropos \
|
|
${BINDIR}/man ${BINDIR}/whatis
|
|
MAN+= apropos.1
|
|
MLINKS= apropos.1 whatis.1
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|