Added CROSS_CC and similar args for maintainers, see Maintainers.md

This commit is contained in:
Philippe Teuwen 2021-09-21 13:50:01 +02:00
commit 4d46c1907f
6 changed files with 23 additions and 23 deletions

View file

@ -21,11 +21,11 @@ all: $(BINS)
bootrom.bin: ../bootrom/obj/bootrom.elf
$(info [=] GEN $@)
$(Q)$(OBJCOPY) --gap-fill=0xff --pad-to 0x00102000 -O binary $^ $@
$(Q)$(CROSS_OBJCOPY) --gap-fill=0xff --pad-to 0x00102000 -O binary $^ $@
fullimage.bin: ../armsrc/obj/fullimage.elf
$(info [=] GEN $@)
$(Q)$(OBJCOPY) --gap-fill=0xff -O binary $^ $@
$(Q)$(CROSS_OBJCOPY) --gap-fill=0xff -O binary $^ $@
proxmark3_recovery.bin: bootrom.bin fullimage.bin
$(info [=] GEN $@)