mirror of
https://github.com/hathach/tinyusb.git
synced 2025-03-30 13:20:33 +00:00
11 lines
203 B
Makefile
11 lines
203 B
Makefile
CC = clang
|
|
CXX = clang++
|
|
AS = $(CC) -x assembler-with-cpp
|
|
LD = $(CC)
|
|
|
|
GDB = $(CROSS_COMPILE)gdb
|
|
OBJCOPY = llvm-objcopy
|
|
SIZE = llvm-size
|
|
|
|
include ${TOP}/examples/build_system/make/toolchain/gcc_common.mk
|