4572fb3faf
in favor of just rendering the manpage instead of relying on pre-formatted catpages. Note, this does not impede the ability to use existing catpages, it just removes the utility to generate them. Reviewed by: imp, allanjude Approved by: emaste (mentor) Differential Revision: https://reviews.freebsd.org/D12317
20 lines
259 B
Makefile
20 lines
259 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
FILES= 340.noid \
|
|
450.status-security \
|
|
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
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|