################################################################################
# ԶɵļҪ༭
################################################################################

-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 UVC/subdir.mk
-include USB30/subdir.mk
-include USB20/subdir.mk
-include Startup/subdir.mk
-include RVMSIS/subdir.mk
-include Peripheral/src/subdir.mk
-include DVP/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 += \
UVC.hex \

SECONDARY_LIST += \
UVC.lst \

SECONDARY_SIZE += \
UVC.siz \


# Ŀ
all: UVC.elf secondary-outputs

# ߵ
UVC.elf: $(OBJS) $(USER_OBJS)
	@	@	riscv-none-embed-gcc -march=rv32imac -mabi=ilp32 -msmall-data-limit=8 -mno-save-restore -Os -fmessage-length=0 -fsigned-char -ffunction-sections -fdata-sections  -g -T "C:\Users\OWNER\Desktop\1665276669617711\CH569EVT_UVC\USBSS\USBD\UVC\.ld" -nostartfiles -Xlinker --gc-sections -L../ -Wl,-Map,"UVC.map" --specs=nano.specs --specs=nosys.specs -v -o "UVC.elf" $(OBJS) $(USER_OBJS) $(LIBS)
	@	@
UVC.hex: UVC.elf
	@	riscv-none-embed-objcopy -O ihex "UVC.elf"  "UVC.hex"
	@	@
UVC.lst: UVC.elf
	@	riscv-none-embed-objdump --source --all-headers --demangle --line-numbers --wide "UVC.elf" > "UVC.lst"
	@	@
UVC.siz: UVC.elf
	@	riscv-none-embed-size --format=berkeley "UVC.elf"
	@	@
# Ŀ
clean:
	-$(RM) $(ASM_UPPER_DEPS)$(OBJS)$(SECONDARY_FLASH)$(SECONDARY_LIST)$(SECONDARY_SIZE)$(ASM_DEPS)$(S_DEPS)$(S_UPPER_DEPS)$(C_DEPS) UVC.elf
	-@
secondary-outputs: $(SECONDARY_FLASH) $(SECONDARY_LIST) $(SECONDARY_SIZE)

.PHONY: all clean dependents

-include ../makefile.targets
