Makefile revision 260013
1#	From: @(#)Makefile	8.1 (Berkeley) 6/5/93
2# $FreeBSD: stable/10/share/doc/Makefile 260013 2013-12-28 20:05:31Z jmmv $
3
4.include <bsd.own.mk>
5
6SUBDIR=	${_IPv6} \
7	${_atf} \
8	legal \
9	${_llvm} \
10	${_roffdocs}
11
12.if ${MK_TESTS} != "no"
13_atf= atf
14.endif
15
16.if ${MK_CLANG} != "no"
17_llvm=	llvm
18.endif
19
20.if ${MK_INET6} != "no"
21_IPv6=	IPv6
22.endif
23
24# FIXME this is not a real solution ...
25.if ${MK_GROFF} != "no"
26_roffdocs=	papers psd smm usd
27.endif
28
29# Default output format for troff documents is ascii.
30# To generate postscript versions of troff documents, use:
31#  make PRINTERDEVICE=ps
32
33.include <bsd.subdir.mk>
34