mirror of
https://git.freebsd.org/src.git
synced 2026-01-11 19:57:22 +00:00
Since we can load raw firmware start shipping them as is. This also remove the uuencode format that don't add any value and garbage collect old firmwares version. For pkgbase users they are now in the FreeBSD-firmware-iwm package. Sponsored by: Beckhoff Automation GmbH & Co. KG
97 lines
1.3 KiB
Makefile
97 lines
1.3 KiB
Makefile
.include <src.opts.mk>
|
|
|
|
# Do not include `info' in the SUBDIR list, it is handled separately.
|
|
|
|
SUBDIR= ${_colldef} \
|
|
ctypedef \
|
|
${_dict} \
|
|
${_doc} \
|
|
${_dtrace} \
|
|
${_examples} \
|
|
${_firmwares} \
|
|
${_i18n} \
|
|
keys \
|
|
${_man} \
|
|
${_me} \
|
|
misc \
|
|
${_mk} \
|
|
${_monetdef} \
|
|
${_msgdef} \
|
|
${_numericdef} \
|
|
${_sendmail} \
|
|
skel \
|
|
${_snmp} \
|
|
${_syscons} \
|
|
tabset \
|
|
termcap \
|
|
${_timedef} \
|
|
${_vt} \
|
|
${_zoneinfo}
|
|
|
|
# NB: keep these sorted by MK_* knobs
|
|
|
|
.if ${MK_BSNMP} != "no"
|
|
_snmp= snmp
|
|
.endif
|
|
|
|
.if ${MK_CDDL} != "no"
|
|
_dtrace= dtrace
|
|
.endif
|
|
|
|
.if ${MK_DICT} != "no"
|
|
_dict= dict
|
|
.endif
|
|
|
|
.if ${MK_EXAMPLES} != "no"
|
|
_examples= examples
|
|
.endif
|
|
|
|
.if ${MK_SOURCELESS_UCODE} != "no"
|
|
_firmwares= firmwares
|
|
.endif
|
|
|
|
.if ${MK_ICONV} != "no"
|
|
_i18n= i18n
|
|
.endif
|
|
|
|
.if ${MK_LOCALES} != "no"
|
|
_colldef= colldef colldef_unicode
|
|
_monetdef= monetdef monetdef_unicode
|
|
_msgdef= msgdef msgdef_unicode
|
|
_numericdef= numericdef numericdef_unicode
|
|
_timedef= timedef
|
|
.endif
|
|
|
|
.if ${MK_MAKE} != "no"
|
|
_mk= mk
|
|
.endif
|
|
|
|
.if ${MK_MAN} != "no"
|
|
_man= man
|
|
.endif
|
|
|
|
.if ${MK_SENDMAIL} != "no"
|
|
_sendmail= sendmail
|
|
.endif
|
|
|
|
.if ${MK_SHAREDOCS} != "no"
|
|
_doc= doc
|
|
.endif
|
|
|
|
.if ${MK_SYSCONS} != "no"
|
|
_syscons= syscons
|
|
.endif
|
|
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.if ${MK_VT} != "no"
|
|
_vt= vt
|
|
.endif
|
|
|
|
.if ${MK_ZONEINFO} != "no"
|
|
_zoneinfo= zoneinfo
|
|
.endif
|
|
|
|
SUBDIR_PARALLEL=
|
|
|
|
.include <bsd.subdir.mk>
|