1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-12 12:29:19 +03:00
openwrt-xburst/package/mtd/src/Makefile
juhosg a4cf24d38a package/mtd: make fixtrx available on ar71xx as well
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24911 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-01-05 19:27:55 +00:00

17 lines
238 B
Makefile

CC = gcc
CFLAGS += -Wall
obj = mtd.o jffs2.o crc32.o
obj.ar71xx = trx.o
obj.brcm = trx.o
obj.brcm47xx = $(obj.brcm)
obj.brcm63xx = imagetag.o
ifdef FIS_SUPPORT
obj += fis.o
endif
mtd: $(obj) $(obj.$(TARGET))
clean:
rm -f *.o jffs2