1.include <src.opts.mk> 2 3# Do not include `info' in the SUBDIR list, it is handled separately. 4 5SUBDIR= ${_colldef} \ 6 ctypedef \ 7 ${_dict} \ 8 ${_doc} \ 9 ${_dtrace} \ 10 ${_examples} \ 11 ${_i18n} \ 12 keys \ 13 ${_man} \ 14 ${_me} \ 15 misc \ 16 ${_mk} \ 17 ${_monetdef} \ 18 ${_msgdef} \ 19 ${_numericdef} \ 20 ${_sendmail} \ 21 skel \ 22 ${_snmp} \ 23 ${_syscons} \ 24 tabset \ 25 termcap \ 26 ${_timedef} \ 27 ${_vt} \ 28 ${_zoneinfo} 29 30# NB: keep these sorted by MK_* knobs 31 32.if ${MK_BSNMP} != "no" 33_snmp= snmp 34.endif 35 36.if ${MK_CDDL} != "no" 37_dtrace= dtrace 38.endif 39 40.if ${MK_DICT} != "no" 41_dict= dict 42.endif 43 44.if ${MK_EXAMPLES} != "no" 45_examples= examples 46.endif 47 48.if ${MK_ICONV} != "no" 49_i18n= i18n 50.endif 51 52.if ${MK_LOCALES} != "no" 53_colldef= colldef colldef_unicode 54_monetdef= monetdef monetdef_unicode 55_msgdef= msgdef msgdef_unicode 56_numericdef= numericdef numericdef_unicode 57_timedef= timedef 58.endif 59 60.if ${MK_MAKE} != "no" 61_mk= mk 62.endif 63 64.if ${MK_MAN} != "no" 65_man= man 66.endif 67 68.if ${MK_SENDMAIL} != "no" 69_sendmail= sendmail 70.endif 71 72.if ${MK_SHAREDOCS} != "no" 73_doc= doc 74.endif 75 76.if ${MK_SYSCONS} != "no" 77_syscons= syscons 78.endif 79 80SUBDIR.${MK_TESTS}+= tests 81 82.if ${MK_VT} != "no" 83_vt= vt 84.endif 85 86.if ${MK_ZONEINFO} != "no" 87_zoneinfo= zoneinfo 88.endif 89 90SUBDIR_PARALLEL= 91 92.include <bsd.subdir.mk> 93