1afe61c15SRodney W. Grimes# @(#)Makefile 8.1 (Berkeley) 6/5/93 28b533554SAndrey A. Chernov# $FreeBSD$ 3afe61c15SRodney W. Grimes 4c6063d0dSWarner Losh.include <src.opts.mk> 5e1fe3dbaSRuslan Ermilov 658faf4d0SRuslan Ermilov# Do not include `info' in the SUBDIR list, it is handled separately. 758faf4d0SRuslan Ermilov 8ec0e2ac6SRui PauloSUBDIR= ${_colldef} \ 9*ecff3c30SBaptiste Daroussin ctypedef \ 10d668f22aSPoul-Henning Kamp ${_dict} \ 1124dfc360SRuslan Ermilov ${_doc} \ 1257d9cab5SEnji Cooper ${_dtrace} \ 13538860d1SPoul-Henning Kamp ${_examples} \ 14ad30f8e7SGabor Kovesdan ${_i18n} \ 158d20be1eSBryan Drewery keys \ 16538860d1SPoul-Henning Kamp ${_man} \ 17538860d1SPoul-Henning Kamp ${_me} \ 1824dfc360SRuslan Ermilov misc \ 19690f477dSSam Leffler ${_mk} \ 209c4b7239SPoul-Henning Kamp ${_monetdef} \ 219c4b7239SPoul-Henning Kamp ${_msgdef} \ 229c4b7239SPoul-Henning Kamp ${_numericdef} \ 2324dfc360SRuslan Ermilov ${_sendmail} \ 2424dfc360SRuslan Ermilov skel \ 25690f477dSSam Leffler ${_snmp} \ 26538860d1SPoul-Henning Kamp ${_syscons} \ 2724dfc360SRuslan Ermilov tabset \ 2824dfc360SRuslan Ermilov termcap \ 299c4b7239SPoul-Henning Kamp ${_timedef} \ 308febff70SEd Maste ${_vt} \ 314907faa6SRemko Lodder ${_zoneinfo} 32f555eeb8SDavid E. O'Brien 33690f477dSSam Leffler# NB: keep these sorted by MK_* knobs 34690f477dSSam Leffler 35690f477dSSam Leffler.if ${MK_BSNMP} != "no" 36690f477dSSam Leffler_snmp= snmp 37690f477dSSam Leffler.endif 38690f477dSSam Leffler 3957d9cab5SEnji Cooper.if ${MK_CDDL} != "no" 4057d9cab5SEnji Cooper_dtrace= dtrace 4157d9cab5SEnji Cooper.endif 4257d9cab5SEnji Cooper 43690f477dSSam Leffler.if ${MK_DICT} != "no" 44690f477dSSam Leffler_dict= dict 45690f477dSSam Leffler.endif 46690f477dSSam Leffler 47690f477dSSam Leffler.if ${MK_EXAMPLES} != "no" 48690f477dSSam Leffler_examples= examples 49690f477dSSam Leffler.endif 50690f477dSSam Leffler 51ad30f8e7SGabor Kovesdan.if ${MK_ICONV} != "no" 52ad30f8e7SGabor Kovesdan_i18n= i18n 53ad30f8e7SGabor Kovesdan.endif 54ad30f8e7SGabor Kovesdan 55e1fe3dbaSRuslan Ermilov.if ${MK_LOCALES} != "no" 560a36787eSBaptiste Daroussin_colldef= colldef colldef_unicode 570a36787eSBaptiste Daroussin_monetdef= monetdef monetdef_unicode 580a36787eSBaptiste Daroussin_msgdef= msgdef msgdef_unicode 590a36787eSBaptiste Daroussin_numericdef= numericdef numericdef_unicode 609c4b7239SPoul-Henning Kamp_timedef= timedef 619c4b7239SPoul-Henning Kamp.endif 629c4b7239SPoul-Henning Kamp 63690f477dSSam Leffler.if ${MK_MAKE} != "no" 64690f477dSSam Leffler_mk= mk 65538860d1SPoul-Henning Kamp.endif 66538860d1SPoul-Henning Kamp 67e1fe3dbaSRuslan Ermilov.if ${MK_MAN} != "no" 68538860d1SPoul-Henning Kamp_man= man 69538860d1SPoul-Henning Kamp.endif 70538860d1SPoul-Henning Kamp 71e1fe3dbaSRuslan Ermilov.if ${MK_SENDMAIL} != "no" 7224dfc360SRuslan Ermilov_sendmail= sendmail 7324dfc360SRuslan Ermilov.endif 7424dfc360SRuslan Ermilov 75e1fe3dbaSRuslan Ermilov.if ${MK_SHAREDOCS} != "no" 7624dfc360SRuslan Ermilov_doc= doc 7731923af7SGregory Neil Shapiro.endif 7831923af7SGregory Neil Shapiro 79690f477dSSam Leffler.if ${MK_SYSCONS} != "no" 80690f477dSSam Leffler_syscons= syscons 81690f477dSSam Leffler.endif 82690f477dSSam Leffler 834b330699SEnji CooperSUBDIR.${MK_TESTS}+= tests 8421203fddSJulio Merino 85824a9093SEd Maste.if ${MK_VT} != "no" 868febff70SEd Maste_vt= vt 878febff70SEd Maste.endif 888febff70SEd Maste 894907faa6SRemko Lodder.if ${MK_ZONEINFO} != "no" 904907faa6SRemko Lodder_zoneinfo= zoneinfo 914907faa6SRemko Lodder.endif 924907faa6SRemko Lodder 93aa92269eSBryan DrewerySUBDIR_PARALLEL= 94aa92269eSBryan Drewery 95afe61c15SRodney W. Grimes.include <bsd.subdir.mk> 96