mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-19 12:21:16 +01:00
12 lines
127 B
Makefile
12 lines
127 B
Makefile
# $Id$
|
|
|
|
all: mtd
|
|
|
|
%.o: %.c
|
|
$(CC) -I. $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $^
|
|
|
|
mtd: mtd.o
|
|
$(CC) -o $@ $^
|
|
|
|
clean:
|
|
rm -f *.o mtd
|