freebsd-dev/etc/mtree/Makefile
Ulrich Spörlein 423102c6fa Flesh out WITHOUT_GROFF support to DTRT.
A full featured groff is required during buildworld, so build it always
and don't rely on it being present on the host system.

vgrind(1) is tightly coupled to a roff processor and will not be
built/installed when groff is disabled. Also much of the roff'ed
documentation under share/doc will not be built/installed when
WITHOUT_GROFF is defined.

Reviewed by:	ru (partial)
2011-02-22 08:13:49 +00:00

30 lines
512 B
Makefile

# $FreeBSD$
.include <bsd.own.mk>
FILES= ${_BIND.chroot.dist} \
${_BIND.include.dist} \
BSD.include.dist \
BSD.root.dist \
${_BSD.sendmail.dist} \
BSD.usr.dist \
BSD.var.dist
.if ${MK_BIND} != "no"
_BIND.chroot.dist= BIND.chroot.dist
.if ${MK_BIND_LIBS} != "no"
_BIND.include.dist= BIND.include.dist
.endif
.endif
.if ${MK_GROFF} != "no"
_BSD.groff.dist= BSD.groff.dist
.endif
.if ${MK_SENDMAIL} != "no"
_BSD.sendmail.dist= BSD.sendmail.dist
.endif
NO_OBJ=
FILESDIR= /etc/mtree
.include <bsd.prog.mk>