mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-19 05:40:38 +01:00
11 lines
195 B
Makefile
11 lines
195 B
Makefile
TOOLCHAIN ?= arm-gcc
|
|
ifeq ($(COMPILER),llvm)
|
|
# Compatibility with old build system
|
|
TOOLCHAIN = arm-llvm
|
|
endif
|
|
USE_LIBA = 1
|
|
EXE = elf
|
|
|
|
%_flash: %.bin
|
|
dfu-util -i 0 -a 0 -s 0x08000000:leave -D $<
|