mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 14:37:57 +00:00
13 lines
139 B
Makefile
13 lines
139 B
Makefile
# $Id$
|
|
|
|
all: robocfg
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $^
|
|
|
|
robocfg: robocfg.o
|
|
$(CC) -o $@ $^
|
|
|
|
clean:
|
|
rm -f *.o robocfg
|