mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-20 17:32:57 +00:00
10 lines
127 B
Makefile
10 lines
127 B
Makefile
all: wlc
|
|
clean:
|
|
rm -f *.o wlc
|
|
|
|
wlc: wlc.o ioctl.o
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -I../include -Wall -c -o $@ $<
|
|
|
|
.PHONY: all clean
|