mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-04 12:52:15 +00:00
07e547fe26
utilities and related support files for manual pages, which were previously controlled by MAN. For POLA, the default depends on MAN, i.e., WITHOUT_MAN implies WITHOUT_MAN_UTILS and WITH_MAN implies WITH_MAN_UTILS. This patch is slightly improved by me from: PR: misc/145212
23 lines
304 B
Makefile
23 lines
304 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
FILES= 340.noid \
|
|
999.local
|
|
|
|
# NB: keep these sorted by MK_* knobs
|
|
|
|
.if ${MK_LOCATE} != "no"
|
|
FILES+= 310.locate
|
|
.endif
|
|
|
|
.if ${MK_MAN_UTILS} != "no"
|
|
FILES+= 320.whatis 330.catman
|
|
.endif
|
|
|
|
.if ${MK_PKGTOOLS} != "no"
|
|
FILES+= 400.status-pkg
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|