1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-29 06:31:39 +03:00
openwrt-xburst/package/robocfg/src/Makefile

12 lines
132 B
Makefile
Raw Normal View History

all: robocfg
%.o: %.c
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $^
robocfg: robocfg.o
$(CC) -o $@ $^
clean:
rm -f *.o robocfg