Date: Sat, 9 May 2009 18:54:18 +0000 (UTC) From: Sam Leffler <sam@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r191945 - head/sys/contrib/dev/iwi Message-ID: <200905091854.n49IsI5e031543@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905091854.n49IsI5e031543>