blob: 3f36375b0c5678d1aa9c69a74d14fea2e15b722d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# 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>
|