mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
14 lines
247 B
Makefile
14 lines
247 B
Makefile
# makefile for arm iar toolchain
|
|
AS = iasmarm
|
|
LD = ilinkarm
|
|
OBJCOPY = ielftool --silent
|
|
SIZE = size
|
|
|
|
include $(TOP)/tools/make/cpu/$(CPU_CORE).mk
|
|
|
|
# Enable extension mode (gcc compatible)
|
|
CFLAGS += -e --debug --silent
|
|
|
|
# silent mode
|
|
ASFLAGS += -S
|