Makefile revision 219019
11638Srgrimes#	@(#)Makefile	8.1 (Berkeley) 6/5/93
252331Sache# $FreeBSD: head/share/Makefile 219019 2011-02-25 00:04:39Z gabor $
31638Srgrimes
4156813Sru.include <bsd.own.mk>
5156813Sru
656296Sru# Do not include `info' in the SUBDIR list, it is handled separately.
756296Sru
8148736SphkSUBDIR=	${_colldef} \
9145003Sphk	${_dict} \
10124750Sru	${_doc} \
11148675Sphk	${_examples} \
12219019Sgabor	${_i18n} \
13148675Sphk	${_man} \
14148675Sphk	${_me} \
15124750Sru	misc \
16183242Ssam	${_mk} \
17148736Sphk	${_mklocale} \
18148736Sphk	${_monetdef} \
19148736Sphk	${_msgdef} \
20148736Sphk	${_numericdef} \
21124750Sru	${_sendmail} \
22124750Sru	skel \
23183242Ssam	${_snmp} \
24148675Sphk	${_syscons} \
25124750Sru	tabset \
26124750Sru	termcap \
27148736Sphk	${_timedef} \
28171050Sremko	${_zoneinfo}
291638Srgrimes
30183242Ssam# NB: keep these sorted by MK_* knobs
31183242Ssam
32183242Ssam.if ${MK_BSNMP} != "no"
33183242Ssam_snmp=		snmp
34183242Ssam.endif
35183242Ssam
36183242Ssam.if ${MK_DICT} != "no"
37183697Sdes_dict=		dict
38183242Ssam.endif
39183242Ssam
40183242Ssam.if ${MK_EXAMPLES} != "no"
41183242Ssam_examples=	examples
42183242Ssam.endif
43183242Ssam
44183242Ssam.if ${MK_GROFF} != "no"
45183242Ssam_me=		me
46183242Ssam.endif
47183242Ssam
48219019Sgabor.if ${MK_ICONV} != "no"
49219019Sgabor_i18n=		i18n
50219019Sgabor.endif
51219019Sgabor
52156813Sru.if ${MK_LOCALES} != "no"
53148736Sphk_colldef =	colldef
54148736Sphk_mklocale =	mklocale
55148736Sphk_monetdef =	monetdef
56148736Sphk_msgdef =	msgdef
57148736Sphk_numericdef =	numericdef
58148736Sphk_timedef =	timedef
59148736Sphk.endif
60148736Sphk
61183242Ssam.if ${MK_MAKE} != "no"
62183242Ssam_mk=		mk
63148675Sphk.endif
64148675Sphk
65156813Sru.if ${MK_MAN} != "no"
66148675Sphk_man=		man
67148675Sphk.endif
68148675Sphk
69156813Sru.if ${MK_SENDMAIL} != "no"
70124750Sru_sendmail=	 sendmail
7166940Sgshapiro.endif
7266940Sgshapiro
73156813Sru.if ${MK_SHAREDOCS} != "no"
74124750Sru_doc=		doc
75124750Sru.endif
76124750Sru
77183242Ssam.if ${MK_SYSCONS} != "no"
78183242Ssam_syscons=	syscons
79183242Ssam.endif
80183242Ssam
81171050Sremko.if ${MK_ZONEINFO} != "no"
82171050Sremko_zoneinfo=	zoneinfo
83171050Sremko.endif
84171050Sremko
851638Srgrimes.include <bsd.subdir.mk>
86