freebsd-dev/share/doc/Makefile
Marcel Moolenaar c175365cec Add ATF to the build. This is may be a bit rought around the egdes,
but committing it helps to get everyone on the same page and makes
sure we make progress.

Tinderbox breakages that are the result of this commit are entirely
the committer's fault -- in other words: buildworld testing on amd64
only.

Credits follow:

Submitted by:	Garrett Cooper <yanegomi@gmail.com>
Sponsored by:	Isilon Systems
Based on work by:	keramida@
Thanks to:	gnn@, mdf@, mlaier@, sjg@
Special thanks to:	keramida@
2012-10-22 01:18:41 +00:00

39 lines
597 B
Makefile

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