mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-10 12:51:59 +00:00
19 lines
289 B
Makefile
19 lines
289 B
Makefile
CC = gcc
|
|
CFLAGS += -Wall
|
|
|
|
obj = mtd.o jffs2.o crc32.o
|
|
obj.seama = seama.o md5.o
|
|
obj.ar71xx = trx.o
|
|
obj.brcm = trx.o
|
|
obj.brcm47xx = $(obj.brcm)
|
|
obj.brcm63xx = imagetag.o
|
|
obj.ramips = $(obj.seama)
|
|
|
|
ifdef FIS_SUPPORT
|
|
obj += fis.o
|
|
endif
|
|
|
|
mtd: $(obj) $(obj.$(TARGET))
|
|
clean:
|
|
rm -f *.o jffs2
|