2019-08-08 22:57:33 +08:00
|
|
|
include ../common_arm/Makefile.common
|
2013-03-26 20:35:54 +08:00
|
|
|
|
|
|
|
BINS = bootrom.bin fullimage.bin proxmark3_recovery.bin
|
|
|
|
|
|
|
|
all: $(BINS)
|
|
|
|
|
|
|
|
bootrom.bin: ../bootrom/obj/bootrom.elf
|
2019-06-02 06:25:25 +08:00
|
|
|
$(info [=] GEN $@)
|
|
|
|
$(Q)$(OBJCOPY) --gap-fill=0xff --pad-to 0x00102000 -O binary $^ $@
|
2013-03-26 20:35:54 +08:00
|
|
|
|
|
|
|
fullimage.bin: ../armsrc/obj/fullimage.elf
|
2019-06-02 06:25:25 +08:00
|
|
|
$(info [=] GEN $@)
|
|
|
|
$(Q)$(OBJCOPY) --gap-fill=0xff -O binary $^ $@
|
2013-03-26 20:35:54 +08:00
|
|
|
|
|
|
|
proxmark3_recovery.bin: bootrom.bin fullimage.bin
|
2019-06-02 06:25:25 +08:00
|
|
|
$(info [=] GEN $@)
|
|
|
|
$(Q)cat bootrom.bin fullimage.bin > $@
|
2013-03-26 20:35:54 +08:00
|
|
|
|
2019-03-10 18:35:03 +08:00
|
|
|
clean:
|
2019-06-02 06:25:25 +08:00
|
|
|
$(Q)rm -f $(BINS)
|
2013-03-26 20:35:54 +08:00
|
|
|
|