mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-21 09:42:09 +00:00
Reset bc is needed for Linksys EA8500's dual boot. Signed-off-by: Adrian Panella <ianchi74@outlook.com>
24 lines
466 B
Makefile
24 lines
466 B
Makefile
CC = gcc
|
|
CFLAGS += -Wall
|
|
LDFLAGS += -lubox
|
|
|
|
obj = mtd.o jffs2.o crc32.o md5.o
|
|
obj.seama = seama.o md5.o
|
|
obj.ar71xx = trx.o $(obj.seama)
|
|
obj.brcm = trx.o
|
|
obj.brcm47xx = $(obj.brcm)
|
|
obj.bcm53xx = $(obj.brcm) $(obj.seama)
|
|
obj.brcm63xx = imagetag.o
|
|
obj.ramips = $(obj.seama)
|
|
obj.mvebu = linksys_bootcount.o
|
|
obj.kirkwood = linksys_bootcount.o
|
|
obj.ipq806x = linksys_bootcount.o
|
|
|
|
ifdef FIS_SUPPORT
|
|
obj += fis.o
|
|
endif
|
|
|
|
mtd: $(obj) $(obj.$(TARGET))
|
|
clean:
|
|
rm -f *.o jffs2
|