summaryrefslogtreecommitdiff
path: root/openwrt/package/broadcom-wl/src/wlc/Makefile
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-06-19 19:59:53 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-06-19 19:59:53 +0000
commit3763da2cc535cb34897819a1337f7abf4a60bf22 (patch)
treef93c1909bc60cf200552a2b61a310adfb87851e8 /openwrt/package/broadcom-wl/src/wlc/Makefile
parent0c327ae79d2df80a7a01fd8528096729d1ebbe99 (diff)
downloadmtk-20170518-3763da2cc535cb34897819a1337f7abf4a60bf22.zip
mtk-20170518-3763da2cc535cb34897819a1337f7abf4a60bf22.tar.gz
mtk-20170518-3763da2cc535cb34897819a1337f7abf4a60bf22.tar.bz2
remove the wl.o build from the kernel patch and move the driver along with wl, nas and wlc into packages/broadcom-wl
SVN-Revision: 4009
Diffstat (limited to 'openwrt/package/broadcom-wl/src/wlc/Makefile')
-rw-r--r--openwrt/package/broadcom-wl/src/wlc/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/openwrt/package/broadcom-wl/src/wlc/Makefile b/openwrt/package/broadcom-wl/src/wlc/Makefile
new file mode 100644
index 0000000..ffe1649
--- /dev/null
+++ b/openwrt/package/broadcom-wl/src/wlc/Makefile
@@ -0,0 +1,9 @@
+all: wlc
+clean:
+ rm -f *.o wlc
+
+wlc: wlc.o ioctl.o
+%.o: %.c
+ $(CC) $(CFLAGS) -Wall -c -o $@ $<
+
+.PHONY: all clean