From owner-svn-src-all@FreeBSD.ORG Sat May 9 18:54:18 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DDA51065670; Sat, 9 May 2009 18:54:18 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8C5668FC14; Sat, 9 May 2009 18:54:18 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n49IsIBM031544; Sat, 9 May 2009 18:54:18 GMT (envelope-from sam@svn.freebsd.org) Received: (from sam@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n49IsI5e031543; Sat, 9 May 2009 18:54:18 GMT (envelope-from sam@svn.freebsd.org) Message-Id: <200905091854.n49IsI5e031543@svn.freebsd.org> From: Sam Leffler Date: Sat, 9 May 2009 18:54:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r191945 - head/sys/contrib/dev/iwi X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 May 2009 18:54:19 -0000 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}