From 0287045d29768229efaa298b916db17325634aa7 Mon Sep 17 00:00:00 2001 From: sam Date: Sat, 9 May 2009 18:54:18 +0000 Subject: Makefile to record the technique by which the .uu files are generated from the Intel-distributed .fw files --- sys/contrib/dev/iwi/Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 sys/contrib/dev/iwi/Makefile (limited to 'sys/contrib') diff --git a/sys/contrib/dev/iwi/Makefile b/sys/contrib/dev/iwi/Makefile new file mode 100644 index 0000000..867145d --- /dev/null +++ b/sys/contrib/dev/iwi/Makefile @@ -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} -- cgit v1.1