freebsd-dev/etc/periodic/weekly/Makefile
Jung-uk Kim 07e547fe26 Add a new build option, MAN_UTILS. This option lets you control building
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
2010-05-19 23:56:26 +00:00

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>