Makefile revision 256281
1101209Srwatson#	@(#)Makefile	8.1 (Berkeley) 6/5/93
2126218Srwatson# $FreeBSD: stable/10/share/Makefile 241823 2012-10-22 01:18:41Z marcel $
3101209Srwatson
4101209Srwatson.include <bsd.own.mk>
5101209Srwatson
6101209Srwatson# Do not include `info' in the SUBDIR list, it is handled separately.
7101209Srwatson
8101209SrwatsonSUBDIR=	${_atf} \
9101209Srwatson	${_colldef} \
10101209Srwatson	${_dict} \
11101209Srwatson	${_doc} \
12101209Srwatson	dtrace \
13101209Srwatson	${_examples} \
14101209Srwatson	${_i18n} \
15101209Srwatson	${_man} \
16101209Srwatson	${_me} \
17101209Srwatson	misc \
18101209Srwatson	${_mk} \
19101209Srwatson	${_mklocale} \
20101209Srwatson	${_monetdef} \
21101209Srwatson	${_msgdef} \
22101209Srwatson	${_numericdef} \
23101209Srwatson	${_sendmail} \
24101209Srwatson	skel \
25101209Srwatson	${_snmp} \
26101209Srwatson	${_syscons} \
27101209Srwatson	tabset \
28101209Srwatson	termcap \
29101209Srwatson	${_timedef} \
30101209Srwatson	xml \
31140343Scharnier	xsl \
32140343Scharnier	${_zoneinfo}
33140343Scharnier
34140343Scharnier# NB: keep these sorted by MK_* knobs
35101209Srwatson
36101209Srwatson.if ${MK_ATF} != "no"
37157986Sdwmalone_atf=		atf
38101209Srwatson.endif
39101209Srwatson
40101209Srwatson.if ${MK_BSNMP} != "no"
41101209Srwatson_snmp=		snmp
42101209Srwatson.endif
43140343Scharnier
44101209Srwatson.if ${MK_DICT} != "no"
45101209Srwatson_dict=		dict
46101209Srwatson.endif
47101209Srwatson
48101209Srwatson.if ${MK_EXAMPLES} != "no"
49140343Scharnier_examples=	examples
50140343Scharnier.endif
51140343Scharnier
52140343Scharnier.if ${MK_GROFF} != "no"
53140343Scharnier_me=		me
54140343Scharnier.endif
55101209Srwatson
56101209Srwatson.if ${MK_ICONV} != "no"
57101209Srwatson_i18n=		i18n
58101209Srwatson.endif
59140343Scharnier
60126218Srwatson.if ${MK_LOCALES} != "no"
61126218Srwatson_colldef =	colldef
62140343Scharnier_mklocale =	mklocale
63140343Scharnier_monetdef =	monetdef
64101209Srwatson_msgdef =	msgdef
65101209Srwatson_numericdef =	numericdef
66140343Scharnier_timedef =	timedef
67101209Srwatson.endif
68140343Scharnier
69101209Srwatson.if ${MK_MAKE} != "no"
70101209Srwatson_mk=		mk
71101209Srwatson.endif
72126218Srwatson
73126218Srwatson.if ${MK_MAN} != "no"
74126218Srwatson_man=		man
75126218Srwatson.endif
76126218Srwatson
77126218Srwatson.if ${MK_SENDMAIL} != "no"
78126218Srwatson_sendmail=	 sendmail
79126218Srwatson.endif
80140343Scharnier
81126218Srwatson.if ${MK_SHAREDOCS} != "no"
82126218Srwatson_doc=		doc
83126218Srwatson.endif
84126218Srwatson
85126218Srwatson.if ${MK_SYSCONS} != "no"
86140343Scharnier_syscons=	syscons
87126218Srwatson.endif
88126218Srwatson
89126218Srwatson.if ${MK_ZONEINFO} != "no"
90126218Srwatson_zoneinfo=	zoneinfo
91126218Srwatson.endif
92126218Srwatson
93101209Srwatson.include <bsd.subdir.mk>
94101209Srwatson