################################################################################ # MRS Version: 1.9.0 # 自动生成的文件。不要编辑! ################################################################################ -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 Hardware/src/subdir.mk -include Drivers/TimeSliceOffset/subdir.mk -include Drivers/RingQueue2/subdir.mk -include Drivers/RingQueue/subdir.mk -include Debug/subdir.mk -include Core/subdir.mk -include App/src/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 += \ mppt_Nos_V0.4.hex \ SECONDARY_LIST += \ mppt_Nos_V0.4.lst \ SECONDARY_SIZE += \ mppt_Nos_V0.4.siz \ # 所有目标 all: mppt_Nos_V0.4.elf secondary-outputs # 工具调用 mppt_Nos_V0.4.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 "D:\psx\MPPT\git\Ld\Link.ld" -nostartfiles -Xlinker --gc-sections -Wl,-Map,"mppt_Nos_V0.4.map" --specs=nano.specs --specs=nosys.specs -o "mppt_Nos_V0.4.elf" $(OBJS) $(USER_OBJS) $(LIBS) @ @ mppt_Nos_V0.4.hex: mppt_Nos_V0.4.elf @ riscv-none-embed-objcopy -O ihex "mppt_Nos_V0.4.elf" "mppt_Nos_V0.4.hex" @ @ mppt_Nos_V0.4.lst: mppt_Nos_V0.4.elf @ riscv-none-embed-objdump --all-headers --demangle --disassemble -M xw "mppt_Nos_V0.4.elf" > "mppt_Nos_V0.4.lst" @ @ mppt_Nos_V0.4.siz: mppt_Nos_V0.4.elf @ riscv-none-embed-size --format=berkeley "mppt_Nos_V0.4.elf" @ @ $(MAKE) --no-print-directory post-build # 其他目标 clean: -$(RM) $(ASM_UPPER_DEPS)$(OBJS)$(SECONDARY_FLASH)$(SECONDARY_LIST)$(SECONDARY_SIZE)$(ASM_DEPS)$(S_DEPS)$(S_UPPER_DEPS)$(C_DEPS) mppt_Nos_V0.4.elf -@ post-build: -riscv-none-embed-objcopy -O binary "mppt_Nos_V0.4.elf" "mppt_Nos_V0.4.bin" -@ secondary-outputs: $(SECONDARY_FLASH) $(SECONDARY_LIST) $(SECONDARY_SIZE) .PHONY: all clean dependents post-build -include ../makefile.targets