Files
Upsilon/build/platform.device.mak
2017-08-30 14:35:44 +02:00

16 lines
271 B
Makefile

TOOLCHAIN ?= arm-gcc
ifeq ($(COMPILER),llvm)
# Compatibility with old build system
TOOLCHAIN = arm-llvm
endif
USE_LIBA = 1
EXE = elf
.PHONY: %_run
%_run: %.$(EXE)
$(GDB) -x gdb_script.gdb $<
.PHONY: %_flash
%_flash: %.bin
dfu-util -i 0 -a 0 -s 0x08000000:leave -D $<