1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-13 22:11:06 +02:00

13 lines
170 B
Makefile
Raw Normal View History

ifndef CFLAGS
CFLAGS = -O2 -g -I ../src
endif
LIBS=-lnl
all: swconfig
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $^
swconfig: cli.o swlib.o
$(CC) $(LDFLAGS) -o $@ $^ $(LIBS)