]> git.zerfleddert.de Git - proxmark3-svn/blame - recovery/Makefile
fpga_compress: interleave (combine) fpga_lf.bit and fpga_hf.bit before compression.
[proxmark3-svn] / recovery / Makefile
CommitLineData
a79e330d 1include ../common/Makefile.common
2
fb228974 3BINS = bootrom.bin fullimage.bin proxmark3_recovery.bin
a79e330d 4
5all: $(BINS)
a79e330d 6
7bootrom.bin: ../bootrom/obj/bootrom.elf
8 $(OBJCOPY) --gap-fill=0xff --pad-to 0x00102000 -O binary $^ $@
9
fb228974 10fullimage.bin: ../armsrc/obj/fullimage.elf
a79e330d 11 $(OBJCOPY) --gap-fill=0xff -O binary $^ $@
12
fb228974 13proxmark3_recovery.bin: bootrom.bin fullimage.bin
14 cat bootrom.bin fullimage.bin > $@
a79e330d 15
16clean:
17 rm -f $(BINS)
18
Impressum, Datenschutz