xref: /NextBSD/share/Makefile (revision 84d351007654069f9643c8e4b4802a7f5f08ee42)
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	${_locale-links} \
17	${_man} \
18	${_me} \
19	misc \
20	${_mk} \
21	${_monetdef} \
22	${_msgdef} \
23	${_numericdef} \
24	skel \
25	${_snmp} \
26	${_syscons} \
27	tabset \
28	termcap \
29	${_tests} \
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_GROFF} != "no"
53_me=		me
54.endif
55
56.if ${MK_ICONV} != "no"
57_i18n=		i18n
58.endif
59
60.if ${MK_LOCALES} != "no"
61_colldef=	colldef
62_ctypedef=	ctypedef
63_locale-links=	locale-links
64_monetdef=	monetdef
65_msgdef=	msgdef
66_numericdef=	numericdef
67_timedef=	timedef
68.endif
69
70.if ${MK_MAKE} != "no"
71_mk=		mk
72.endif
73
74.if ${MK_MAN} != "no"
75_man=		man
76.endif
77
78.if ${MK_SHAREDOCS} != "no"
79_doc=		doc
80.endif
81
82.if ${MK_SYSCONS} != "no"
83_syscons=	syscons
84.endif
85
86.if ${MK_TESTS} != "no"
87_tests=		tests
88.endif
89
90.if ${MK_VT} != "no"
91_vt=		vt
92.endif
93
94.if ${MK_ZONEINFO} != "no"
95_zoneinfo=	zoneinfo
96.endif
97
98SUBDIR_PARALLEL=
99
100.include <bsd.subdir.mk>
101