11638Srgrimes#	@(#)Makefile	8.1 (Berkeley) 6/5/93
252331Sache# $FreeBSD: releng/10.3/share/Makefile 291792 2015-12-04 18:14:31Z bdrewery $
31638Srgrimes
4156813Sru.include <bsd.own.mk>
5156813Sru
656296Sru# Do not include `info' in the SUBDIR list, it is handled separately.
756296Sru
8256366SrpauloSUBDIR=	${_colldef} \
9145003Sphk	${_dict} \
10124750Sru	${_doc} \
11278054Sngie	${_dtrace} \
12148675Sphk	${_examples} \
13219019Sgabor	${_i18n} \
14257572Sbdrewery	keys \
15148675Sphk	${_man} \
16148675Sphk	${_me} \
17124750Sru	misc \
18183242Ssam	${_mk} \
19148736Sphk	${_mklocale} \
20148736Sphk	${_monetdef} \
21148736Sphk	${_msgdef} \
22148736Sphk	${_numericdef} \
23124750Sru	${_sendmail} \
24124750Sru	skel \
25183242Ssam	${_snmp} \
26148675Sphk	${_syscons} \
27124750Sru	tabset \
28124750Sru	termcap \
29260037Sjmmv	${_tests} \
30148736Sphk	${_timedef} \
31267797Semaste	${_vt} \
32171050Sremko	${_zoneinfo}
331638Srgrimes
34183242Ssam# NB: keep these sorted by MK_* knobs
35183242Ssam
36183242Ssam.if ${MK_BSNMP} != "no"
37183242Ssam_snmp=		snmp
38183242Ssam.endif
39183242Ssam
40278054Sngie.if ${MK_CDDL} != "no"
41278054Sngie_dtrace=	dtrace
42278054Sngie.endif
43278054Sngie
44183242Ssam.if ${MK_DICT} != "no"
45183697Sdes_dict=		dict
46183242Ssam.endif
47183242Ssam
48183242Ssam.if ${MK_EXAMPLES} != "no"
49183242Ssam_examples=	examples
50183242Ssam.endif
51183242Ssam
52183242Ssam.if ${MK_GROFF} != "no"
53183242Ssam_me=		me
54183242Ssam.endif
55183242Ssam
56219019Sgabor.if ${MK_ICONV} != "no"
57219019Sgabor_i18n=		i18n
58219019Sgabor.endif
59219019Sgabor
60156813Sru.if ${MK_LOCALES} != "no"
61148736Sphk_colldef =	colldef
62148736Sphk_mklocale =	mklocale
63148736Sphk_monetdef =	monetdef
64148736Sphk_msgdef =	msgdef
65148736Sphk_numericdef =	numericdef
66148736Sphk_timedef =	timedef
67148736Sphk.endif
68148736Sphk
69183242Ssam.if ${MK_MAKE} != "no"
70183242Ssam_mk=		mk
71148675Sphk.endif
72148675Sphk
73156813Sru.if ${MK_MAN} != "no"
74148675Sphk_man=		man
75148675Sphk.endif
76148675Sphk
77156813Sru.if ${MK_SENDMAIL} != "no"
78124750Sru_sendmail=	 sendmail
7966940Sgshapiro.endif
8066940Sgshapiro
81156813Sru.if ${MK_SHAREDOCS} != "no"
82124750Sru_doc=		doc
83124750Sru.endif
84124750Sru
85183242Ssam.if ${MK_SYSCONS} != "no"
86183242Ssam_syscons=	syscons
87183242Ssam.endif
88183242Ssam
89260037Sjmmv.if ${MK_TESTS} != "no"
90260037Sjmmv_tests=		tests
91260037Sjmmv.endif
92260037Sjmmv
93268399Semaste.if ${MK_VT} != "no"
94267797Semaste_vt=		vt
95267797Semaste.endif
96267797Semaste
97171050Sremko.if ${MK_ZONEINFO} != "no"
98171050Sremko_zoneinfo=	zoneinfo
99171050Sremko.endif
100171050Sremko
101291792SbdrewerySUBDIR_PARALLEL=
102291792Sbdrewery
1031638Srgrimes.include <bsd.subdir.mk>
104