423102c6fa
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)
22 lines
433 B
Makefile
22 lines
433 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= ${_bind9} IPv6 legal ${_roffdocs}
|
|
|
|
.if ${MK_BIND} != "no"
|
|
_bind9= bind9
|
|
.endif
|
|
|
|
# FIXME this is not a real solution ...
|
|
.if ${MK_GROFF} != "no"
|
|
_roffdocs= papers psd smm usd
|
|
.endif
|
|
|
|
# Default output format for troff documents is ascii.
|
|
# To generate postscript versions of troff documents, use:
|
|
# make PRINTERDEVICE=ps
|
|
|
|
.include <bsd.subdir.mk>
|