mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-25 16:31:13 +00:00
34939cad39
SVN-Revision: 15242
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
|