Makefile revision 183242
11638Srgrimes#	@(#)Makefile	8.1 (Berkeley) 6/5/93
252331Sache# $FreeBSD: head/share/Makefile 183242 2008-09-21 22:02:26Z sam $
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} \
12148675Sphk	${_man} \
13148675Sphk	${_me} \
14124750Sru	misc \
15183242Ssam	${_mk} \
16148736Sphk	${_mklocale} \
17148736Sphk	${_monetdef} \
18148736Sphk	${_msgdef} \
19148736Sphk	${_numericdef} \
20124750Sru	${_sendmail} \
21124750Sru	skel \
22183242Ssam	${_snmp} \
23148675Sphk	${_syscons} \
24124750Sru	tabset \
25124750Sru	termcap \
26148736Sphk	${_timedef} \
27171050Sremko	${_zoneinfo}
281638Srgrimes
29183242Ssam# NB: keep these sorted by MK_* knobs
30183242Ssam
31183242Ssam.if ${MK_BSNMP} != "no"
32183242Ssam_snmp=		snmp
33183242Ssam.endif
34183242Ssam
35183242Ssam.if ${MK_DICT} != "no"
36183242Ssam_dict=	 	dict
37183242Ssam.endif
38183242Ssam
39183242Ssam.if ${MK_EXAMPLES} != "no"
40183242Ssam_examples=	examples
41183242Ssam.endif
42183242Ssam
43183242Ssam.if ${MK_GROFF} != "no"
44183242Ssam_me=		me
45183242Ssam.endif
46183242Ssam
47156813Sru.if ${MK_LOCALES} != "no"
48148736Sphk_colldef =	colldef
49148736Sphk_mklocale =	mklocale
50148736Sphk_monetdef =	monetdef
51148736Sphk_msgdef =	msgdef
52148736Sphk_numericdef =	numericdef
53148736Sphk_timedef =	timedef
54148736Sphk.endif
55148736Sphk
56183242Ssam.if ${MK_MAKE} != "no"
57183242Ssam_mk=		mk
58148675Sphk.endif
59148675Sphk
60156813Sru.if ${MK_MAN} != "no"
61148675Sphk_man=		man
62148675Sphk.endif
63148675Sphk
64156813Sru.if ${MK_SENDMAIL} != "no"
65124750Sru_sendmail=	 sendmail
6666940Sgshapiro.endif
6766940Sgshapiro
68156813Sru.if ${MK_SHAREDOCS} != "no"
69124750Sru_doc=		doc
70124750Sru.endif
71124750Sru
72183242Ssam.if ${MK_SYSCONS} != "no"
73183242Ssam_syscons=	syscons
74183242Ssam.endif
75183242Ssam
76171050Sremko.if ${MK_ZONEINFO} != "no"
77171050Sremko_zoneinfo=	zoneinfo
78171050Sremko.endif
79171050Sremko
801638Srgrimes.include <bsd.subdir.mk>
81