mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-25 02:46:48 +00:00
13 lines
123 B
Makefile
13 lines
123 B
Makefile
# $Id$
|
|
|
|
all: mtd
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $^
|
|
|
|
mtd: mtd.o
|
|
$(CC) -o $@ $^
|
|
|
|
clean:
|
|
rm -f *.o mtd
|