1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-03-04 13:18:20 +02:00

10 lines
114 B
Makefile
Raw Normal View History

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