mkimxboot: always clean up dualboot elf files

Change-Id: I80ed1af784aa80bec9fa0b1e9322f25e69672510
This commit is contained in:
Amaury Pouly 2013-09-26 20:14:09 +02:00
parent 120701646f
commit d527c5595c

View file

@ -19,8 +19,9 @@ OPT_nwze360=-DSONY_NWZE360 -DIMX233_SUBTARGET=3780
BOOTOBJS=$(patsubst %, dualboot_%.o, $(TARGETS))
BOOTBINS=$(patsubst %, dualboot_%.arm-bin, $(TARGETS))
BOOTELFS=$(patsubst %, dualboot_%.arm-elf, $(TARGETS))
all: ../dualboot.h ../dualboot.c
all: ../dualboot.h ../dualboot.c $(BOOTELFS)
# Dualboot bootloaders
@ -43,4 +44,4 @@ bin2c: bin2c.c
$(CC) -o bin2c bin2c.c
clean:
rm -f *~ bin2c $(BOOTBINS) $(BOOTOBJS)
rm -f *~ bin2c $(BOOTBINS) $(BOOTOBJS) $(BOOTELFS)