mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-03 06:43:46 +01:00
9 lines
127 B
Makefile
9 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
|