Files
xiuos/Ubiquitous/XiUOS/board/gd32vf103_rvstar/third_party_driver/Makefile
T
2021-12-02 15:17:59 +08:00

18 lines
267 B
Makefile
Executable File

SRC_FILES := system_gd32vf103.c
SRC_DIR :=
ifeq ($(CONFIG_BSP_USING_GPIO),y)
SRC_DIR += gpio
endif
ifeq ($(CONFIG_BSP_USING_SYSCLOCK),y)
SRC_DIR += sys_clock
endif
ifeq ($(CONFIG_BSP_USING_UART),y)
SRC_DIR += uart
endif
include $(KERNEL_ROOT)/compiler.mk