freebsd-dev/share/doc/Makefile
Julio Merino e01d128a42 Subsume the functionality of MK_ATF into MK_TESTS.
There is no reason to keep the two knobs separate: if tests are
enabled, the ATF libraries are required; and if tests are disabled,
the ATF libraries are not necessary.  Keeping the two just serves
to complicate the build.

Reviewed by:	freebsd-testing
Approved by:	rpaulo (mentor)
2013-11-08 14:24:47 +00:00

34 lines
541 B
Makefile

# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
# $FreeBSD$
.include <bsd.own.mk>
SUBDIR= ${_IPv6} \
${_atf} \
legal \
${_llvm} \
${_roffdocs}
.if ${MK_TESTS} != "no"
_atf= atf
.endif
.if ${MK_CLANG} != "no"
_llvm= llvm
.endif
.if ${MK_INET6} != "no"
_IPv6= IPv6
.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>