ZD-BMS-CH/ZDBMS/BMS_CC/obj/makefile

76 lines
2.1 KiB
Makefile
Raw Normal View History

2025-02-19 06:18:30 +00:00
################################################################################
# MRS Version: 1.9.2
# <20>Զ<EFBFBD><D4B6><EFBFBD><EFBFBD>ɵ<EFBFBD><C9B5>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD><E0BCAD>
################################################################################
-include ../makefile.init
RM := rm -rf
# All of the sources participating in the build are defined here
-include sources.mk
-include User/subdir.mk
-include Startup/subdir.mk
-include Peripheral/src/subdir.mk
-include Debug/subdir.mk
-include Core/subdir.mk
-include subdir.mk
-include objects.mk
ifneq ($(MAKECMDGOALS),clean)
ifneq ($(strip $(ASM_UPPER_DEPS)),)
-include $(ASM_UPPER_DEPS)
endif
ifneq ($(strip $(ASM_DEPS)),)
-include $(ASM_DEPS)
endif
ifneq ($(strip $(S_DEPS)),)
-include $(S_DEPS)
endif
ifneq ($(strip $(S_UPPER_DEPS)),)
-include $(S_UPPER_DEPS)
endif
ifneq ($(strip $(C_DEPS)),)
-include $(C_DEPS)
endif
endif
-include ../makefile.defs
# Add inputs and outputs from these tool invocations to the build variables
SECONDARY_FLASH += \
BMS_CC.hex \
SECONDARY_LIST += \
BMS_CC.lst \
SECONDARY_SIZE += \
BMS_CC.siz \
# <20><><EFBFBD><EFBFBD>Ŀ<EFBFBD><C4BF>
all: BMS_CC.elf secondary-outputs
# <20><><EFBFBD>ߵ<EFBFBD><DFB5><EFBFBD>
BMS_CC.elf: $(OBJS) $(USER_OBJS)
@ @ riscv-none-embed-gcc -march=rv32imacxw -mabi=ilp32 -msmall-data-limit=8 -msave-restore -Os -fmessage-length=0 -fsigned-char -ffunction-sections -fdata-sections -fno-common -Wunused -Wuninitialized -g -T "E:\Y\MounRiver\ZDBMS\BMS_CC\Ld\Link.ld" -nostartfiles -Xlinker --gc-sections -Wl,-Map,"BMS_CC.map" --specs=nano.specs --specs=nosys.specs -o "BMS_CC.elf" $(OBJS) $(USER_OBJS) $(LIBS)
@ @
BMS_CC.hex: BMS_CC.elf
@ riscv-none-embed-objcopy -O ihex "BMS_CC.elf" "BMS_CC.hex"
@ @
BMS_CC.lst: BMS_CC.elf
@ riscv-none-embed-objdump --all-headers --demangle --disassemble -M xw "BMS_CC.elf" > "BMS_CC.lst"
@ @
BMS_CC.siz: BMS_CC.elf
@ riscv-none-embed-size --format=berkeley "BMS_CC.elf"
@ @
# <20><><EFBFBD><EFBFBD>Ŀ<EFBFBD><C4BF>
clean:
-$(RM) $(ASM_UPPER_DEPS)$(OBJS)$(SECONDARY_FLASH)$(SECONDARY_LIST)$(SECONDARY_SIZE)$(ASM_DEPS)$(S_DEPS)$(S_UPPER_DEPS)$(C_DEPS) BMS_CC.elf
-@
secondary-outputs: $(SECONDARY_FLASH) $(SECONDARY_LIST) $(SECONDARY_SIZE)
.PHONY: all clean dependents
-include ../makefile.targets