11638Srgrimes#	@(#)Makefile	8.1 (Berkeley) 6/5/93
252331Sache# $FreeBSD$
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} \
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
40183242Ssam.if ${MK_DICT} != "no"
41183697Sdes_dict=		dict
42183242Ssam.endif
43183242Ssam
44183242Ssam.if ${MK_EXAMPLES} != "no"
45183242Ssam_examples=	examples
46183242Ssam.endif
47183242Ssam
48183242Ssam.if ${MK_GROFF} != "no"
49183242Ssam_me=		me
50183242Ssam.endif
51183242Ssam
52219019Sgabor.if ${MK_ICONV} != "no"
53219019Sgabor_i18n=		i18n
54219019Sgabor.endif
55219019Sgabor
56156813Sru.if ${MK_LOCALES} != "no"
57148736Sphk_colldef =	colldef
58148736Sphk_mklocale =	mklocale
59148736Sphk_monetdef =	monetdef
60148736Sphk_msgdef =	msgdef
61148736Sphk_numericdef =	numericdef
62148736Sphk_timedef =	timedef
63148736Sphk.endif
64148736Sphk
65183242Ssam.if ${MK_MAKE} != "no"
66183242Ssam_mk=		mk
67148675Sphk.endif
68148675Sphk
69156813Sru.if ${MK_MAN} != "no"
70148675Sphk_man=		man
71148675Sphk.endif
72148675Sphk
73156813Sru.if ${MK_SENDMAIL} != "no"
74124750Sru_sendmail=	 sendmail
7566940Sgshapiro.endif
7666940Sgshapiro
77156813Sru.if ${MK_SHAREDOCS} != "no"
78124750Sru_doc=		doc
79124750Sru.endif
80124750Sru
81183242Ssam.if ${MK_SYSCONS} != "no"
82183242Ssam_syscons=	syscons
83183242Ssam.endif
84183242Ssam
85260037Sjmmv.if ${MK_TESTS} != "no"
86260037Sjmmv_tests=		tests
87260037Sjmmv.endif
88260037Sjmmv
89268399Semaste.if ${MK_VT} != "no"
90267797Semaste_vt=		vt
91267797Semaste.endif
92267797Semaste
93171050Sremko.if ${MK_ZONEINFO} != "no"
94171050Sremko_zoneinfo=	zoneinfo
95171050Sremko.endif
96171050Sremko
971638Srgrimes.include <bsd.subdir.mk>
98