xref: /freebsd/share/Makefile (revision 97759ccc)
1afe61c15SRodney W. Grimes
2c6063d0dSWarner Losh.include <src.opts.mk>
3e1fe3dbaSRuslan Ermilov
458faf4d0SRuslan Ermilov# Do not include `info' in the SUBDIR list, it is handled separately.
558faf4d0SRuslan Ermilov
6ec0e2ac6SRui PauloSUBDIR=	${_colldef} \
7ecff3c30SBaptiste Daroussin	ctypedef \
8d668f22aSPoul-Henning Kamp	${_dict} \
924dfc360SRuslan Ermilov	${_doc} \
1057d9cab5SEnji Cooper	${_dtrace} \
11538860d1SPoul-Henning Kamp	${_examples} \
12ad30f8e7SGabor Kovesdan	${_i18n} \
138d20be1eSBryan Drewery	keys \
14538860d1SPoul-Henning Kamp	${_man} \
15538860d1SPoul-Henning Kamp	${_me} \
1624dfc360SRuslan Ermilov	misc \
17690f477dSSam Leffler	${_mk} \
189c4b7239SPoul-Henning Kamp	${_monetdef} \
199c4b7239SPoul-Henning Kamp	${_msgdef} \
209c4b7239SPoul-Henning Kamp	${_numericdef} \
2124dfc360SRuslan Ermilov	${_sendmail} \
2224dfc360SRuslan Ermilov	skel \
23690f477dSSam Leffler	${_snmp} \
24538860d1SPoul-Henning Kamp	${_syscons} \
2524dfc360SRuslan Ermilov	tabset \
2624dfc360SRuslan Ermilov	termcap \
279c4b7239SPoul-Henning Kamp	${_timedef} \
288febff70SEd Maste	${_vt} \
294907faa6SRemko Lodder	${_zoneinfo}
30f555eeb8SDavid E. O'Brien
31690f477dSSam Leffler# NB: keep these sorted by MK_* knobs
32690f477dSSam Leffler
33690f477dSSam Leffler.if ${MK_BSNMP} != "no"
34690f477dSSam Leffler_snmp=		snmp
35690f477dSSam Leffler.endif
36690f477dSSam Leffler
3757d9cab5SEnji Cooper.if ${MK_CDDL} != "no"
3857d9cab5SEnji Cooper_dtrace=	dtrace
3957d9cab5SEnji Cooper.endif
4057d9cab5SEnji Cooper
41690f477dSSam Leffler.if ${MK_DICT} != "no"
42690f477dSSam Leffler_dict=		dict
43690f477dSSam Leffler.endif
44690f477dSSam Leffler
45690f477dSSam Leffler.if ${MK_EXAMPLES} != "no"
46690f477dSSam Leffler_examples=	examples
47690f477dSSam Leffler.endif
48690f477dSSam Leffler
49ad30f8e7SGabor Kovesdan.if ${MK_ICONV} != "no"
50ad30f8e7SGabor Kovesdan_i18n=		i18n
51ad30f8e7SGabor Kovesdan.endif
52ad30f8e7SGabor Kovesdan
53e1fe3dbaSRuslan Ermilov.if ${MK_LOCALES} != "no"
540a36787eSBaptiste Daroussin_colldef=	colldef colldef_unicode
550a36787eSBaptiste Daroussin_monetdef=	monetdef monetdef_unicode
560a36787eSBaptiste Daroussin_msgdef=	msgdef msgdef_unicode
570a36787eSBaptiste Daroussin_numericdef=	numericdef numericdef_unicode
589c4b7239SPoul-Henning Kamp_timedef=	timedef
599c4b7239SPoul-Henning Kamp.endif
609c4b7239SPoul-Henning Kamp
61690f477dSSam Leffler.if ${MK_MAKE} != "no"
62690f477dSSam Leffler_mk=		mk
63538860d1SPoul-Henning Kamp.endif
64538860d1SPoul-Henning Kamp
65e1fe3dbaSRuslan Ermilov.if ${MK_MAN} != "no"
66538860d1SPoul-Henning Kamp_man=		man
67538860d1SPoul-Henning Kamp.endif
68538860d1SPoul-Henning Kamp
69e1fe3dbaSRuslan Ermilov.if ${MK_SENDMAIL} != "no"
7024dfc360SRuslan Ermilov_sendmail=	 sendmail
7124dfc360SRuslan Ermilov.endif
7224dfc360SRuslan Ermilov
73e1fe3dbaSRuslan Ermilov.if ${MK_SHAREDOCS} != "no"
7424dfc360SRuslan Ermilov_doc=		doc
7531923af7SGregory Neil Shapiro.endif
7631923af7SGregory Neil Shapiro
77690f477dSSam Leffler.if ${MK_SYSCONS} != "no"
78690f477dSSam Leffler_syscons=	syscons
79690f477dSSam Leffler.endif
80690f477dSSam Leffler
814b330699SEnji CooperSUBDIR.${MK_TESTS}+= tests
8221203fddSJulio Merino
83824a9093SEd Maste.if ${MK_VT} != "no"
848febff70SEd Maste_vt=		vt
858febff70SEd Maste.endif
868febff70SEd Maste
874907faa6SRemko Lodder.if ${MK_ZONEINFO} != "no"
884907faa6SRemko Lodder_zoneinfo=	zoneinfo
894907faa6SRemko Lodder.endif
904907faa6SRemko Lodder
91aa92269eSBryan DrewerySUBDIR_PARALLEL=
92aa92269eSBryan Drewery
93afe61c15SRodney W. Grimes.include <bsd.subdir.mk>
94