summaryrefslogtreecommitdiffstats
path: root/openwrt/target/linux/package/bcm43xx-dscape/fwcutter/Makefile
diff options
context:
space:
mode:
authorwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-03-13 11:27:06 +0000
committerwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-03-13 11:27:06 +0000
commitc7552634b1a2cf7e6eaa79e309d5cd8040abf837 (patch)
tree011afe8b83807c40dc6a8a27def5d7a2586074ea /openwrt/target/linux/package/bcm43xx-dscape/fwcutter/Makefile
parent04b1fc848d05e0f70b911adf3e4e2d77928ad55b (diff)
update to a newer snapshot and m. buesch snapshots
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3358 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/Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/openwrt/target/linux/package/bcm43xx-dscape/fwcutter/Makefile b/openwrt/target/linux/package/bcm43xx-dscape/fwcutter/Makefile
deleted file mode 100644
index 6402dca85..000000000
--- a/openwrt/target/linux/package/bcm43xx-dscape/fwcutter/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-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