Files
xiuos/board/stm32f407zgt6/third_party_driver/Makefile
T
2021-05-28 14:31:48 +08:00

17 lines
237 B
Makefile

SRC_DIR := common
ifeq ($(CONFIG_BSP_USING_GPIO),y)
SRC_DIR += gpio
endif
ifeq ($(CONFIG_BSP_USING_UART),y)
SRC_DIR += uart
endif
ifeq ($(CONFIG_BSP_USING_EXTMEM),y)
SRC_DIR += extmem
endif
include $(KERNEL_ROOT)/compiler.mk