1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-09 17:07:28 +03:00
nbd 8afe76304a remove the wl.o build from the kernel patch and move the driver along with wl, nas and wlc into packages/broadcom-wl
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4009 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-06-19 19:59:53 +00:00

10 lines
114 B
Makefile

all: wlc
clean:
rm -f *.o wlc
wlc: wlc.o ioctl.o
%.o: %.c
$(CC) $(CFLAGS) -Wall -c -o $@ $<
.PHONY: all clean