mirror of
https://github.com/LiBwrt-op/openwrt-6.x.git
synced 2026-01-16 00:07:06 +00:00
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
|