mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 21:37:10 +02:00
c34b71fa3d
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33841 3c298f89-4303-0410-b956-a3cf2f4a3e73
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
|