stmbl/toolchain.mak

9 lines
236 B
Makefile
Raw Permalink Normal View History

# Define programs and commands for the toolchain
2017-11-07 14:31:32 +00:00
TOOLCHAIN = arm-none-eabi-
CC = $(TOOLCHAIN)gcc
OBJCOPY = $(TOOLCHAIN)objcopy
OBJDUMP = $(TOOLCHAIN)objdump
SIZE = $(TOOLCHAIN)size
NM = $(TOOLCHAIN)nm
MKDIR = mkdir