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