mirror of
https://github.com/rene-dev/stmbl.git
synced 2026-02-05 18:01:21 +08:00
9 lines
236 B
Makefile
9 lines
236 B
Makefile
# Define programs and commands for the toolchain
|
|
TOOLCHAIN = arm-none-eabi-
|
|
CC = $(TOOLCHAIN)gcc
|
|
OBJCOPY = $(TOOLCHAIN)objcopy
|
|
OBJDUMP = $(TOOLCHAIN)objdump
|
|
SIZE = $(TOOLCHAIN)size
|
|
NM = $(TOOLCHAIN)nm
|
|
MKDIR = mkdir
|