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 \
29148736Sphk	${_timedef} \
30171050Sremko	${_zoneinfo}
311638Srgrimes
32183242Ssam# NB: keep these sorted by MK_* knobs
33183242Ssam
34183242Ssam.if ${MK_BSNMP} != "no"
35183242Ssam_snmp=		snmp
36183242Ssam.endif
37183242Ssam
38183242Ssam.if ${MK_DICT} != "no"
39183697Sdes_dict=		dict
40183242Ssam.endif
41183242Ssam
42183242Ssam.if ${MK_EXAMPLES} != "no"
43183242Ssam_examples=	examples
44183242Ssam.endif
45183242Ssam
46183242Ssam.if ${MK_GROFF} != "no"
47183242Ssam_me=		me
48183242Ssam.endif
49183242Ssam
50219019Sgabor.if ${MK_ICONV} != "no"
51219019Sgabor_i18n=		i18n
52219019Sgabor.endif
53219019Sgabor
54156813Sru.if ${MK_LOCALES} != "no"
55148736Sphk_colldef =	colldef
56148736Sphk_mklocale =	mklocale
57148736Sphk_monetdef =	monetdef
58148736Sphk_msgdef =	msgdef
59148736Sphk_numericdef =	numericdef
60148736Sphk_timedef =	timedef
61148736Sphk.endif
62148736Sphk
63183242Ssam.if ${MK_MAKE} != "no"
64183242Ssam_mk=		mk
65148675Sphk.endif
66148675Sphk
67156813Sru.if ${MK_MAN} != "no"
68148675Sphk_man=		man
69148675Sphk.endif
70148675Sphk
71156813Sru.if ${MK_SENDMAIL} != "no"
72124750Sru_sendmail=	 sendmail
7366940Sgshapiro.endif
7466940Sgshapiro
75156813Sru.if ${MK_SHAREDOCS} != "no"
76124750Sru_doc=		doc
77124750Sru.endif
78124750Sru
79183242Ssam.if ${MK_SYSCONS} != "no"
80183242Ssam_syscons=	syscons
81183242Ssam.endif
82183242Ssam
83171050Sremko.if ${MK_ZONEINFO} != "no"
84171050Sremko_zoneinfo=	zoneinfo
85171050Sremko.endif
86171050Sremko
871638Srgrimes.include <bsd.subdir.mk>
88