mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 22:47:56 +00:00
63c91af404
SVN-Revision: 17659
15 lines
193 B
Makefile
15 lines
193 B
Makefile
CC = gcc
|
|
CFLAGS += -Wall
|
|
|
|
obj = mtd.o jffs2.o crc32.o
|
|
obj.brcm = trx.o
|
|
obj.brcm47xx = $(obj.brcm)
|
|
|
|
ifdef FIS_SUPPORT
|
|
obj += fis.o
|
|
endif
|
|
|
|
mtd: $(obj) $(obj.$(TARGET))
|
|
clean:
|
|
rm -f *.o jffs2
|