xref: /freebsd/share/Makefile (revision af0a81b6470aba4af4a24ae9804053722846ded4)
1c6063d0dSWarner Losh.include <src.opts.mk>
2e1fe3dbaSRuslan Ermilov
358faf4d0SRuslan Ermilov# Do not include `info' in the SUBDIR list, it is handled separately.
458faf4d0SRuslan Ermilov
5ec0e2ac6SRui PauloSUBDIR=	${_colldef} \
6ecff3c30SBaptiste Daroussin	ctypedef \
7d668f22aSPoul-Henning Kamp	${_dict} \
824dfc360SRuslan Ermilov	${_doc} \
957d9cab5SEnji Cooper	${_dtrace} \
10538860d1SPoul-Henning Kamp	${_examples} \
11*af0a81b6SEmmanuel Vadot	${_firmwares} \
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
49*af0a81b6SEmmanuel Vadot.if ${MK_SOURCELESS_UCODE} != "no"
50*af0a81b6SEmmanuel Vadot_firmwares=	firmwares
51*af0a81b6SEmmanuel Vadot.endif
52*af0a81b6SEmmanuel Vadot
53ad30f8e7SGabor Kovesdan.if ${MK_ICONV} != "no"
54ad30f8e7SGabor Kovesdan_i18n=		i18n
55ad30f8e7SGabor Kovesdan.endif
56ad30f8e7SGabor Kovesdan
57e1fe3dbaSRuslan Ermilov.if ${MK_LOCALES} != "no"
580a36787eSBaptiste Daroussin_colldef=	colldef colldef_unicode
590a36787eSBaptiste Daroussin_monetdef=	monetdef monetdef_unicode
600a36787eSBaptiste Daroussin_msgdef=	msgdef msgdef_unicode
610a36787eSBaptiste Daroussin_numericdef=	numericdef numericdef_unicode
629c4b7239SPoul-Henning Kamp_timedef=	timedef
639c4b7239SPoul-Henning Kamp.endif
649c4b7239SPoul-Henning Kamp
65690f477dSSam Leffler.if ${MK_MAKE} != "no"
66690f477dSSam Leffler_mk=		mk
67538860d1SPoul-Henning Kamp.endif
68538860d1SPoul-Henning Kamp
69e1fe3dbaSRuslan Ermilov.if ${MK_MAN} != "no"
70538860d1SPoul-Henning Kamp_man=		man
71538860d1SPoul-Henning Kamp.endif
72538860d1SPoul-Henning Kamp
73e1fe3dbaSRuslan Ermilov.if ${MK_SENDMAIL} != "no"
7424dfc360SRuslan Ermilov_sendmail=	 sendmail
7524dfc360SRuslan Ermilov.endif
7624dfc360SRuslan Ermilov
77e1fe3dbaSRuslan Ermilov.if ${MK_SHAREDOCS} != "no"
7824dfc360SRuslan Ermilov_doc=		doc
7931923af7SGregory Neil Shapiro.endif
8031923af7SGregory Neil Shapiro
81690f477dSSam Leffler.if ${MK_SYSCONS} != "no"
82690f477dSSam Leffler_syscons=	syscons
83690f477dSSam Leffler.endif
84690f477dSSam Leffler
854b330699SEnji CooperSUBDIR.${MK_TESTS}+= tests
8621203fddSJulio Merino
87824a9093SEd Maste.if ${MK_VT} != "no"
888febff70SEd Maste_vt=		vt
898febff70SEd Maste.endif
908febff70SEd Maste
914907faa6SRemko Lodder.if ${MK_ZONEINFO} != "no"
924907faa6SRemko Lodder_zoneinfo=	zoneinfo
934907faa6SRemko Lodder.endif
944907faa6SRemko Lodder
95aa92269eSBryan DrewerySUBDIR_PARALLEL=
96aa92269eSBryan Drewery
97afe61c15SRodney W. Grimes.include <bsd.subdir.mk>
98