mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-31 05:52:55 +08:00
12 lines
201 B
Makefile
12 lines
201 B
Makefile
|
# makefile for arm iar toolchain
|
||
|
AS = iasmarm
|
||
|
LD = ilinkarm
|
||
|
OBJCOPY = ielftool --silent
|
||
|
SIZE = size
|
||
|
|
||
|
# Enable extension mode (gcc compatible)
|
||
|
CFLAGS += -e --debug --silent
|
||
|
|
||
|
# silent mode
|
||
|
ASFLAGS += -S
|