Files
xiuos/Ubiquitous/XiZi_IIoT/board/ch569w/third_party_driver/Makefile
T
songyanguang 0da14e6546 Add usbd cdc
2025-08-13 20:00:06 +08:00

26 lines
367 B
Makefile

SRC_DIR := Peripheral
SRC_DIR += sys
ifeq ($(CONFIG_BSP_USING_UART),y)
SRC_DIR += uart
endif
ifeq ($(CONFIG_BSP_USING_SPI),y)
SRC_DIR += spi
endif
ifeq ($(CONFIG_BSP_USING_SERDES),y)
SRC_DIR += serdes
endif
ifeq ($(CONFIG_BSP_USING_USB),y)
SRC_DIR += usb
endif
ifeq ($(CONFIG_BSP_USING_WDT),y)
SRC_DIR += wdt
endif
include $(KERNEL_ROOT)/compiler.mk