mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
18 lines
354 B
Makefile
18 lines
354 B
Makefile
DEPS_SUBMODULES += hw/mcu/renesas/rx
|
|
|
|
# Cross Compiler for RX
|
|
CROSS_COMPILE = rx-elf-
|
|
|
|
include $(TOP)/$(BOARD_PATH)/board.mk
|
|
|
|
CFLAGS += \
|
|
-nostartfiles \
|
|
-ffunction-sections \
|
|
-fdata-sections \
|
|
-fshort-enums \
|
|
-mlittle-endian-data \
|
|
|
|
$(BUILD)/$(PROJECT).mot: $(BUILD)/$(PROJECT).elf
|
|
@echo CREATE $@
|
|
$(OBJCOPY) -O srec -I elf32-rx-be-ns $^ $@
|