stmbl/toolchain.mak

14 lines
443 B
Makefile
Raw Permalink Normal View History

# Define programs and commands for the toolchain
# Do not modiy this file. Instead create a file toolchain-user.mak which can overwrite anything in here.
2020-09-23 19:48:09 +00:00
PYTHON = python3
2018-04-07 01:44:49 +00:00
DFU-UTIL = dfu-util
DFU-SUFFIX = dfu-suffix
ST-FLASH = st-flash
TOOLCHAIN = arm-none-eabi-
CC = $(TOOLCHAIN)gcc
OBJCOPY = $(TOOLCHAIN)objcopy
OBJDUMP = $(TOOLCHAIN)objdump
SIZE = $(TOOLCHAIN)size
NM = $(TOOLCHAIN)nm
MKDIR = mkdir