svn commit: r191945 - head/sys/contrib/dev/iwi

Sam Leffler sam at FreeBSD.org
Sat May 9 18:54:19 UTC 2009


Author: sam
Date: Sat May  9 18:54:18 2009
New Revision: 191945
URL: http://svn.freebsd.org/changeset/base/191945

Log:
  Makefile to record the technique by which the .uu files are generated
  from the Intel-distributed .fw files

Added:
  head/sys/contrib/dev/iwi/Makefile   (contents, props changed)

Added: head/sys/contrib/dev/iwi/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/contrib/dev/iwi/Makefile	Sat May  9 18:54:18 2009	(r191945)
@@ -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}


More information about the svn-src-all mailing list