diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-05 01:42:16 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-05 01:42:16 +0000 |
commit | f04609b1fc4d6cfd8416e91a82f9398148c041cb (patch) | |
tree | 2b6e00651cc3f972c81b02d77637817148735490 /openwrt/target/linux/package/bcm43xx-dscape/fwcutter/Makefile | |
parent | 45e4c70122445c22479359aef30752e21677a57e (diff) |
add bcm43xx
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2836 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/target/linux/package/bcm43xx-dscape/fwcutter/Makefile')
-rw-r--r-- | openwrt/target/linux/package/bcm43xx-dscape/fwcutter/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/openwrt/target/linux/package/bcm43xx-dscape/fwcutter/Makefile b/openwrt/target/linux/package/bcm43xx-dscape/fwcutter/Makefile new file mode 100644 index 000000000..6402dca85 --- /dev/null +++ b/openwrt/target/linux/package/bcm43xx-dscape/fwcutter/Makefile @@ -0,0 +1,32 @@ +VERSION = 0.0.1 + +FIRMWARE_INSTALL_DIR ?= /lib/firmware + +CC = cc +PREFIX = /usr/local +CFLAGS = -std=c99 -O2 -fomit-frame-pointer -Wall -pedantic -D_BSD_SOURCE +LDFLAGS = + + +OBJECTS = fwcutter.o md5.o + +CFLAGS += -DFWCUTTER_VERSION_=$(VERSION) + +all: fwcutter + +fwcutter: $(OBJECTS) + $(CC) $(CFLAGS) -o fwcutter $(OBJECTS) $(LDFLAGS) + +install: all + -install -o 0 -g 0 -m 755 fwcutter $(PREFIX)/bin/ + +clean: + -rm -f *~ *.o *.orig *.rej *.fw fwcutter + +installfw: + -if ! [ -d $(FIRMWARE_INSTALL_DIR) ]; then mkdir $(FIRMWARE_INSTALL_DIR); fi + -install -o 0 -g 0 -m 600 bcm43xx_*.fw $(FIRMWARE_INSTALL_DIR) + +# dependencies +fwcutter.o: md5.h fwcutter_list.h +md5.o: md5.h |