mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-01-30 18:53:26 +01:00
11 lines
132 B
Makefile
11 lines
132 B
Makefile
|
|
all: robocfg
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $^
|
|
|
|
robocfg: robocfg.o
|
|
$(CC) -o $@ $^
|
|
|
|
clean:
|
|
rm -f *.o robocfg
|