xref: /freebsd/share/Makefile (revision a96ef4501919d7ac08e94e98dc34b0bdd744802b)
1#	@(#)Makefile	8.1 (Berkeley) 6/5/93
2# $FreeBSD$
3
4.include <src.opts.mk>
5
6# Do not include `info' in the SUBDIR list, it is handled separately.
7
8SUBDIR=	${_colldef} \
9	${_ctypedef} \
10	${_dict} \
11	${_doc} \
12	${_dtrace} \
13	${_examples} \
14	${_i18n} \
15	keys \
16	${_man} \
17	${_me} \
18	misc \
19	${_mk} \
20	${_monetdef} \
21	${_msgdef} \
22	${_numericdef} \
23	${_sendmail} \
24	skel \
25	${_snmp} \
26	${_syscons} \
27	tabset \
28	termcap \
29	terminfo \
30	${_timedef} \
31	${_vt} \
32	${_zoneinfo}
33
34# NB: keep these sorted by MK_* knobs
35
36.if ${MK_BSNMP} != "no"
37_snmp=		snmp
38.endif
39
40.if ${MK_CDDL} != "no"
41_dtrace=	dtrace
42.endif
43
44.if ${MK_DICT} != "no"
45_dict=		dict
46.endif
47
48.if ${MK_EXAMPLES} != "no"
49_examples=	examples
50.endif
51
52.if ${MK_ICONV} != "no"
53_i18n=		i18n
54.endif
55
56.if ${MK_LOCALES} != "no"
57_colldef=	colldef
58_ctypedef=	ctypedef
59_monetdef=	monetdef
60_msgdef=	msgdef
61_numericdef=	numericdef
62_timedef=	timedef
63.endif
64
65.if ${MK_MAKE} != "no"
66_mk=		mk
67.endif
68
69.if ${MK_MAN} != "no"
70_man=		man
71.endif
72
73.if ${MK_SENDMAIL} != "no"
74_sendmail=	 sendmail
75.endif
76
77.if ${MK_SHAREDOCS} != "no"
78_doc=		doc
79.endif
80
81.if ${MK_SYSCONS} != "no"
82_syscons=	syscons
83.endif
84
85SUBDIR.${MK_TESTS}+= tests
86
87.if ${MK_VT} != "no"
88_vt=		vt
89.endif
90
91.if ${MK_ZONEINFO} != "no"
92_zoneinfo=	zoneinfo
93.endif
94
95SUBDIR_PARALLEL=
96
97.include <bsd.subdir.mk>
98