37 lines
1.7 KiB
Makefile
37 lines
1.7 KiB
Makefile
################################################################################
|
|
# MRS Version: 1.9.1
|
|
# 自动生成的文件。不要编辑!
|
|
################################################################################
|
|
|
|
# Add inputs and outputs from these tool invocations to the build variables
|
|
C_SRCS += \
|
|
../DAP/buffer.c \
|
|
../DAP/cdc_main.c \
|
|
../DAP/dap_main.c \
|
|
../DAP/led.c \
|
|
../DAP/usart.c \
|
|
../DAP/usb_desc.c
|
|
|
|
OBJS += \
|
|
./DAP/buffer.o \
|
|
./DAP/cdc_main.o \
|
|
./DAP/dap_main.o \
|
|
./DAP/led.o \
|
|
./DAP/usart.o \
|
|
./DAP/usb_desc.o
|
|
|
|
C_DEPS += \
|
|
./DAP/buffer.d \
|
|
./DAP/cdc_main.d \
|
|
./DAP/dap_main.d \
|
|
./DAP/led.d \
|
|
./DAP/usart.d \
|
|
./DAP/usb_desc.d
|
|
|
|
|
|
# Each subdirectory must supply rules for building sources it contributes
|
|
DAP/%.o: ../DAP/%.c
|
|
@ @ riscv-none-elf-gcc -march=rv32imacxw -mabi=ilp32 -msmall-data-limit=8 -msave-restore -Os -fmessage-length=0 -fsigned-char -ffunction-sections -fdata-sections -fno-common -flto -Wunused -Wuninitialized -g -I"E:\MCU\WCH\X033\DAPLink_X033-main\Code\DAP_X033\Core" -I"E:\MCU\WCH\X033\DAPLink_X033-main\Code\DAP_X033\User" -I"E:\MCU\WCH\X033\DAPLink_X033-main\Code\DAP_X033\Peripheral\inc" -I"E:\MCU\WCH\X033\DAPLink_X033-main\Code\DAP_X033\DAP\CherryUSB\class\cdc" -I"E:\MCU\WCH\X033\DAPLink_X033-main\Code\DAP_X033\DAP\CherryUSB\class\hid" -I"E:\MCU\WCH\X033\DAPLink_X033-main\Code\DAP_X033\DAP\CherryUSB\common" -I"E:\MCU\WCH\X033\DAPLink_X033-main\Code\DAP_X033\DAP\CherryUSB\core" -I"E:\MCU\WCH\X033\DAPLink_X033-main\Code\DAP_X033\DAP\CherryUSB\port" -I"E:\MCU\WCH\X033\DAPLink_X033-main\Code\DAP_X033\DAP\CherryUSB" -I"E:\MCU\WCH\X033\DAPLink_X033-main\Code\DAP_X033\DAP" -I"E:\MCU\WCH\X033\DAPLink_X033-main\Code\DAP_X033\DAP\DAP_Core" -std=gnu99 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@)" -c -o "$@" "$<"
|
|
@ @
|
|
|