mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
354 B
Makefile
16 lines
354 B
Makefile
|
|
FLASHER ?= $(RIOTTOOLS)/elf2uf2/elf2uf2.sh
|
|
|
|
FLASHFILE ?= $(ELFFILE)
|
|
|
|
FFLAGS ?= $(FLASHFILE)
|
|
|
|
#yes elf2uf2 not elf2uf2.sh
|
|
#the first should be downloaded from git and build
|
|
#the secend is provided by RIOT code
|
|
#FLASHDEPS += $(RIOTTOOLS)/elf2uf2/elf2uf2
|
|
|
|
ifeq ($(RIOTTOOLS)/elf2uf2/elf2uf2.sh,$(FLASHER))
|
|
FLASHDEPS += $(RIOTTOOLS)/elf2uf2/elf2uf2
|
|
endif
|