1994-05-30 19:09:18 +00:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
1999-10-17 13:42:03 +00:00
|
|
|
# $FreeBSD$
|
1994-05-30 19:09:18 +00:00
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
2000-01-19 19:18:50 +00:00
|
|
|
# Do not include `info' in the SUBDIR list, it is handled separately.
|
|
|
|
|
2005-08-05 14:59:50 +00:00
|
|
|
SUBDIR= ${_colldef} \
|
2005-04-13 10:02:58 +00:00
|
|
|
${_dict} \
|
2004-01-20 13:09:29 +00:00
|
|
|
${_doc} \
|
2005-08-03 09:24:39 +00:00
|
|
|
${_examples} \
|
|
|
|
${_man} \
|
|
|
|
${_me} \
|
2004-01-20 13:09:29 +00:00
|
|
|
misc \
|
2008-09-21 22:02:26 +00:00
|
|
|
${_mk} \
|
2005-08-05 14:59:50 +00:00
|
|
|
${_mklocale} \
|
|
|
|
${_monetdef} \
|
|
|
|
${_msgdef} \
|
|
|
|
${_numericdef} \
|
2004-01-20 13:09:29 +00:00
|
|
|
${_sendmail} \
|
|
|
|
skel \
|
2008-09-21 22:02:26 +00:00
|
|
|
${_snmp} \
|
2005-08-03 09:24:39 +00:00
|
|
|
${_syscons} \
|
2004-01-20 13:09:29 +00:00
|
|
|
tabset \
|
|
|
|
termcap \
|
2005-08-05 14:59:50 +00:00
|
|
|
${_timedef} \
|
2007-06-26 19:40:03 +00:00
|
|
|
${_zoneinfo}
|
2000-03-21 09:24:09 +00:00
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
# NB: keep these sorted by MK_* knobs
|
|
|
|
|
|
|
|
.if ${MK_BSNMP} != "no"
|
|
|
|
_snmp= snmp
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_DICT} != "no"
|
2008-10-08 13:20:02 +00:00
|
|
|
_dict= dict
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_EXAMPLES} != "no"
|
|
|
|
_examples= examples
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_GROFF} != "no"
|
|
|
|
_me= me
|
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_LOCALES} != "no"
|
2005-08-05 14:59:50 +00:00
|
|
|
_colldef = colldef
|
|
|
|
_mklocale = mklocale
|
|
|
|
_monetdef = monetdef
|
|
|
|
_msgdef = msgdef
|
|
|
|
_numericdef = numericdef
|
|
|
|
_timedef = timedef
|
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_MAKE} != "no"
|
|
|
|
_mk= mk
|
2005-08-03 09:24:39 +00:00
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_MAN} != "no"
|
2005-08-03 09:24:39 +00:00
|
|
|
_man= man
|
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_SENDMAIL} != "no"
|
2004-01-20 13:09:29 +00:00
|
|
|
_sendmail= sendmail
|
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_SHAREDOCS} != "no"
|
2004-01-20 13:09:29 +00:00
|
|
|
_doc= doc
|
2000-10-10 18:08:19 +00:00
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_SYSCONS} != "no"
|
|
|
|
_syscons= syscons
|
|
|
|
.endif
|
|
|
|
|
2007-06-26 19:40:03 +00:00
|
|
|
.if ${MK_ZONEINFO} != "no"
|
|
|
|
_zoneinfo= zoneinfo
|
|
|
|
.endif
|
|
|
|
|
1994-05-30 19:09:18 +00:00
|
|
|
.include <bsd.subdir.mk>
|