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