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