Makefile revision 260037
11638Srgrimes#	@(#)Makefile	8.1 (Berkeley) 6/5/93
252331Sache# $FreeBSD: stable/10/share/Makefile 260037 2013-12-29 12:30:06Z jmmv $
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} \
11235613Sgnn	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} \
31171050Sremko	${_zoneinfo}
321638Srgrimes
33183242Ssam# NB: keep these sorted by MK_* knobs
34183242Ssam
35183242Ssam.if ${MK_BSNMP} != "no"
36183242Ssam_snmp=		snmp
37183242Ssam.endif
38183242Ssam
39183242Ssam.if ${MK_DICT} != "no"
40183697Sdes_dict=		dict
41183242Ssam.endif
42183242Ssam
43183242Ssam.if ${MK_EXAMPLES} != "no"
44183242Ssam_examples=	examples
45183242Ssam.endif
46183242Ssam
47183242Ssam.if ${MK_GROFF} != "no"
48183242Ssam_me=		me
49183242Ssam.endif
50183242Ssam
51219019Sgabor.if ${MK_ICONV} != "no"
52219019Sgabor_i18n=		i18n
53219019Sgabor.endif
54219019Sgabor
55156813Sru.if ${MK_LOCALES} != "no"
56148736Sphk_colldef =	colldef
57148736Sphk_mklocale =	mklocale
58148736Sphk_monetdef =	monetdef
59148736Sphk_msgdef =	msgdef
60148736Sphk_numericdef =	numericdef
61148736Sphk_timedef =	timedef
62148736Sphk.endif
63148736Sphk
64183242Ssam.if ${MK_MAKE} != "no"
65183242Ssam_mk=		mk
66148675Sphk.endif
67148675Sphk
68156813Sru.if ${MK_MAN} != "no"
69148675Sphk_man=		man
70148675Sphk.endif
71148675Sphk
72156813Sru.if ${MK_SENDMAIL} != "no"
73124750Sru_sendmail=	 sendmail
7466940Sgshapiro.endif
7566940Sgshapiro
76156813Sru.if ${MK_SHAREDOCS} != "no"
77124750Sru_doc=		doc
78124750Sru.endif
79124750Sru
80183242Ssam.if ${MK_SYSCONS} != "no"
81183242Ssam_syscons=	syscons
82183242Ssam.endif
83183242Ssam
84260037Sjmmv.if ${MK_TESTS} != "no"
85260037Sjmmv_tests=		tests
86260037Sjmmv.endif
87260037Sjmmv
88171050Sremko.if ${MK_ZONEINFO} != "no"
89171050Sremko_zoneinfo=	zoneinfo
90171050Sremko.endif
91171050Sremko
921638Srgrimes.include <bsd.subdir.mk>
93