xref: /freebsd/share/Makefile (revision 61cee05b3f16da5c2771e683663aa5596872c24b)
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	${_mklocale} \
22	${_monetdef} \
23	${_msgdef} \
24	${_numericdef} \
25	${_sendmail} \
26	skel \
27	${_snmp} \
28	${_syscons} \
29	tabset \
30	termcap \
31	${_tests} \
32	${_timedef} \
33	${_vt} \
34	${_zoneinfo}
35
36# NB: keep these sorted by MK_* knobs
37
38.if ${MK_BSNMP} != "no"
39_snmp=		snmp
40.endif
41
42.if ${MK_CDDL} != "no"
43_dtrace=	dtrace
44.endif
45
46.if ${MK_DICT} != "no"
47_dict=		dict
48.endif
49
50.if ${MK_EXAMPLES} != "no"
51_examples=	examples
52.endif
53
54.if ${MK_GROFF} != "no"
55_me=		me
56.endif
57
58.if ${MK_ICONV} != "no"
59_i18n=		i18n
60.endif
61
62.if ${MK_LOCALES} != "no"
63_colldef=	colldef
64_ctypedef=	ctypedef
65_locale-links=	locale-links
66_mklocale=	mklocale
67_monetdef=	monetdef
68_msgdef=	msgdef
69_numericdef=	numericdef
70_timedef=	timedef
71.endif
72
73.if ${MK_MAKE} != "no"
74_mk=		mk
75.endif
76
77.if ${MK_MAN} != "no"
78_man=		man
79.endif
80
81.if ${MK_SENDMAIL} != "no"
82_sendmail=	 sendmail
83.endif
84
85.if ${MK_SHAREDOCS} != "no"
86_doc=		doc
87.endif
88
89.if ${MK_SYSCONS} != "no"
90_syscons=	syscons
91.endif
92
93.if ${MK_TESTS} != "no"
94_tests=		tests
95.endif
96
97.if ${MK_VT} != "no"
98_vt=		vt
99.endif
100
101.if ${MK_ZONEINFO} != "no"
102_zoneinfo=	zoneinfo
103.endif
104
105.include <bsd.subdir.mk>
106