1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-26 16:18:31 +00:00

Makefile to record the technique by which the .uu files are generated

from the Intel-distributed .fw files
This commit is contained in:
Sam Leffler 2009-05-09 18:54:18 +00:00
parent 82431678fc
commit c95ae8c852
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=191945

View File

@ -0,0 +1,24 @@
# $FreeBSD$
FW_VERSION=3.1
ALL= ipw2200-bss.fw.uu ipw2200-ibss.fw.uu ipw2200-sniffer.fw.uu
all: ${ALL}
ipw2200-bss.fw.uu: ipw2200-bss.fw LICENSE
(cat LICENSE; \
echo '#define IWI_FW_VERSION' ${FW_VERSION}; \
uuencode ipw2200-bss.fw ipw2200-bss.fw) > ${.TARGET}
ipw2200-ibss.fw.uu: ipw2200-ibss.fw LICENSE
(cat LICENSE; \
echo '#define IWI_FW_VERSION ' ${FW_VERSION}; \
uuencode ipw2200-ibss.fw ipw2200-ibss.fw) > ${.TARGET}
ipw2200-sniffer.fw.uu: ipw2200-sniffer.fw LICENSE
(cat LICENSE; \
echo '#define IWI_FW_VERSION ' ${FW_VERSION}; \
uuencode ipw2200-sniffer.fw ipw2200-sniffer.fw) > ${.TARGET}
clean:
rm -f ${ALL}