mirror of https://github.com/hak5/openwrt.git
12 lines
132 B
Makefile
12 lines
132 B
Makefile
|
|
||
|
all: robocfg
|
||
|
|
||
|
%.o: %.c
|
||
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $^
|
||
|
|
||
|
robocfg: robocfg.o
|
||
|
$(CC) -o $@ $^
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o robocfg
|