1# @(#)Makefile 8.1 (Berkeley) 6/5/93 2# $FreeBSD$ 3 4.include <bsd.own.mk> 5 6# Do not include `info' in the SUBDIR list, it is handled separately. 7 8SUBDIR= ${_colldef} \ 9 ${_dict} \ 10 ${_doc} \ 11 ${_examples} \ 12 ${_i18n} \ 13 ${_man} \ 14 ${_me} \ 15 misc \ 16 ${_mk} \ 17 ${_mklocale} \ 18 ${_monetdef} \ 19 ${_msgdef} \ 20 ${_numericdef} \ 21 ${_sendmail} \ 22 skel \ 23 ${_snmp} \ 24 ${_syscons} \ 25 tabset \ 26 termcap \ 27 ${_timedef} \ 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_DICT} != "no" 37_dict= dict 38.endif 39 40.if ${MK_EXAMPLES} != "no" 41_examples= examples 42.endif 43 44.if ${MK_GROFF} != "no" 45_me= me 46.endif 47 48.if ${MK_ICONV} != "no" 49_i18n= i18n 50.endif 51 52.if ${MK_LOCALES} != "no" 53_colldef = colldef 54_mklocale = mklocale 55_monetdef = monetdef 56_msgdef = msgdef 57_numericdef = numericdef 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 81.if ${MK_ZONEINFO} != "no" 82_zoneinfo= zoneinfo 83.endif 84 85.include <bsd.subdir.mk> 86