diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-06-18 18:04:42 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-06-18 18:04:42 +0000 |
commit | 18ffcca6799839b6770ba8af786f1a2ccef2c8e8 (patch) | |
tree | 62e732d4d19a6f86491eb5545dc1f404dd030318 /package/wlc/src/Makefile | |
parent | 91c63e98223fcc68fd6c4c3b4406e853f311f2d9 (diff) |
add wlc utility
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3992 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/wlc/src/Makefile')
-rw-r--r-- | package/wlc/src/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/package/wlc/src/Makefile b/package/wlc/src/Makefile new file mode 100644 index 000000000..ffe164951 --- /dev/null +++ b/package/wlc/src/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 |