freebsd-dev/share/Makefile

71 lines
975 B
Makefile
Raw Normal View History

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
.include <bsd.own.mk>
# Do not include `info' in the SUBDIR list, it is handled separately.
2005-08-05 14:59:50 +00:00
SUBDIR= ${_colldef} \
${_dict} \
2004-01-20 13:09:29 +00:00
${_doc} \
${_examples} \
${_man} \
${_me} \
2004-01-20 13:09:29 +00:00
misc \
mk \
2005-08-05 14:59:50 +00:00
${_mklocale} \
${_monetdef} \
${_msgdef} \
${_numericdef} \
2004-01-20 13:09:29 +00:00
${_sendmail} \
skel \
snmp \
${_syscons} \
2004-01-20 13:09:29 +00:00
tabset \
termcap \
2005-08-05 14:59:50 +00:00
${_timedef} \
${_zoneinfo}
.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
.if ${MK_SYSCONS} != "no"
_syscons= syscons
.endif
.if ${MK_MAN} != "no"
_man= man
.endif
.if ${MK_GROFF} != "no"
_me= me
.endif
.if ${MK_EXAMPLES} != "no"
_examples= examples
.endif
.if ${MK_DICT} != "no"
_dict= dict
.endif
.if ${MK_SENDMAIL} != "no"
2004-01-20 13:09:29 +00:00
_sendmail= sendmail
.endif
.if ${MK_SHAREDOCS} != "no"
2004-01-20 13:09:29 +00:00
_doc= doc
.endif
.if ${MK_ZONEINFO} != "no"
_zoneinfo= zoneinfo
.endif
1994-05-30 19:09:18 +00:00
.include <bsd.subdir.mk>