1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

riotboot: Build ARCHIVES

Like /Makefile.include builds ARCHIVES before ELFFILES.
This commit is contained in:
chrysn 2021-03-22 20:43:41 +01:00
parent c5d620add8
commit bf571ad7b2

View File

@ -28,7 +28,7 @@ SLOT_RIOT_BINS = $(SLOT0_RIOT_BIN) $(SLOT1_RIOT_BIN)
# This results in the equivalent to "make flash-only" for
# "make riotboot/flash-slot[01]".
ifneq (1, $(RIOTBOOT_SKIP_COMPILE))
$(BINDIR_APP)-%.elf: $(BASELIBS)
$(BINDIR_APP)-%.elf: $(BASELIBS) $(ARCHIVES)
$(Q)$(_LINK) -o $@
endif