summaryrefslogtreecommitdiffstats
path: root/share/Makefile
blob: 078ee1d1c9e07ff2a2e4a84bff2de46f410ab3c5 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#	@(#)Makefile	8.1 (Berkeley) 6/5/93
# $FreeBSD$

.include <bsd.own.mk>

# Do not include `info' in the SUBDIR list, it is handled separately.

SUBDIR=	${_colldef} \
	${_dict} \
	${_doc} \
	${_dtrace} \
	${_examples} \
	${_i18n} \
	keys \
	${_man} \
	${_me} \
	misc \
	${_mk} \
	${_mklocale} \
	${_monetdef} \
	${_msgdef} \
	${_numericdef} \
	${_sendmail} \
	skel \
	${_snmp} \
	${_syscons} \
	tabset \
	termcap \
	${_tests} \
	${_timedef} \
	${_vt} \
	${_zoneinfo}

# NB: keep these sorted by MK_* knobs

.if ${MK_BSNMP} != "no"
_snmp=		snmp
.endif

.if ${MK_CDDL} != "no"
_dtrace=	dtrace
.endif

.if ${MK_DICT} != "no"
_dict=		dict
.endif

.if ${MK_EXAMPLES} != "no"
_examples=	examples
.endif

.if ${MK_GROFF} != "no"
_me=		me
.endif

.if ${MK_ICONV} != "no"
_i18n=		i18n
.endif

.if ${MK_LOCALES} != "no"
_colldef =	colldef
_mklocale =	mklocale
_monetdef =	monetdef
_msgdef =	msgdef
_numericdef =	numericdef
_timedef =	timedef
.endif

.if ${MK_MAKE} != "no"
_mk=		mk
.endif

.if ${MK_MAN} != "no"
_man=		man
.endif

.if ${MK_SENDMAIL} != "no"
_sendmail=	 sendmail
.endif

.if ${MK_SHAREDOCS} != "no"
_doc=		doc
.endif

.if ${MK_SYSCONS} != "no"
_syscons=	syscons
.endif

.if ${MK_TESTS} != "no"
_tests=		tests
.endif

.if ${MK_VT} != "no"
_vt=		vt
.endif

.if ${MK_ZONEINFO} != "no"
_zoneinfo=	zoneinfo
.endif

SUBDIR_PARALLEL=

.include <bsd.subdir.mk>
OpenPOWER on IntegriCloud