Makefile revision 235613
11638Srgrimes#	@(#)Makefile	8.1 (Berkeley) 6/5/93
252331Sache# $FreeBSD: head/share/Makefile 235613 2012-05-18 16:40:15Z gnn $
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} \
11235613Sgnn	dtrace \
12148675Sphk	${_examples} \
13219019Sgabor	${_i18n} \
14148675Sphk	${_man} \
15148675Sphk	${_me} \
16124750Sru	misc \
17183242Ssam	${_mk} \
18148736Sphk	${_mklocale} \
19148736Sphk	${_monetdef} \
20148736Sphk	${_msgdef} \
21148736Sphk	${_numericdef} \
22124750Sru	${_sendmail} \
23124750Sru	skel \
24183242Ssam	${_snmp} \
25148675Sphk	${_syscons} \
26124750Sru	tabset \
27124750Sru	termcap \
28148736Sphk	${_timedef} \
29171050Sremko	${_zoneinfo}
301638Srgrimes
31183242Ssam# NB: keep these sorted by MK_* knobs
32183242Ssam
33183242Ssam.if ${MK_BSNMP} != "no"
34183242Ssam_snmp=		snmp
35183242Ssam.endif
36183242Ssam
37183242Ssam.if ${MK_DICT} != "no"
38183697Sdes_dict=		dict
39183242Ssam.endif
40183242Ssam
41183242Ssam.if ${MK_EXAMPLES} != "no"
42183242Ssam_examples=	examples
43183242Ssam.endif
44183242Ssam
45183242Ssam.if ${MK_GROFF} != "no"
46183242Ssam_me=		me
47183242Ssam.endif
48183242Ssam
49219019Sgabor.if ${MK_ICONV} != "no"
50219019Sgabor_i18n=		i18n
51219019Sgabor.endif
52219019Sgabor
53156813Sru.if ${MK_LOCALES} != "no"
54148736Sphk_colldef =	colldef
55148736Sphk_mklocale =	mklocale
56148736Sphk_monetdef =	monetdef
57148736Sphk_msgdef =	msgdef
58148736Sphk_numericdef =	numericdef
59148736Sphk_timedef =	timedef
60148736Sphk.endif
61148736Sphk
62183242Ssam.if ${MK_MAKE} != "no"
63183242Ssam_mk=		mk
64148675Sphk.endif
65148675Sphk
66156813Sru.if ${MK_MAN} != "no"
67148675Sphk_man=		man
68148675Sphk.endif
69148675Sphk
70156813Sru.if ${MK_SENDMAIL} != "no"
71124750Sru_sendmail=	 sendmail
7266940Sgshapiro.endif
7366940Sgshapiro
74156813Sru.if ${MK_SHAREDOCS} != "no"
75124750Sru_doc=		doc
76124750Sru.endif
77124750Sru
78183242Ssam.if ${MK_SYSCONS} != "no"
79183242Ssam_syscons=	syscons
80183242Ssam.endif
81183242Ssam
82171050Sremko.if ${MK_ZONEINFO} != "no"
83171050Sremko_zoneinfo=	zoneinfo
84171050Sremko.endif
85171050Sremko
861638Srgrimes.include <bsd.subdir.mk>
87