Minor tweaks to iso14443b snoop tracing
[legacy-proxmark3.git] / recovery / Makefile
blobbb8e3a763fbf2ac77ccc161229358215d9589b9a
1 include ../common/Makefile.common
3 BINS = bootrom.bin fullimage.bin proxmark3_recovery.bin
5 all: $(BINS)
7 bootrom.bin: ../bootrom/obj/bootrom.elf
8 $(OBJCOPY) --gap-fill=0xff --pad-to 0x00102000 -O binary $^ $@
10 fullimage.bin: ../armsrc/obj/fullimage.elf
11 $(OBJCOPY) --gap-fill=0xff -O binary $^ $@
13 proxmark3_recovery.bin: bootrom.bin fullimage.bin
14 cat bootrom.bin fullimage.bin > $@
16 clean:
17 rm -f $(BINS)