You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
571 B
23 lines
571 B
ccflags-y += -I$(SDK_DIR)/source/drivers/include/generic \
|
|
-I$(SDK_DIR)/source/drivers/include/common \
|
|
-I$(SDK_DIR)/source/drivers/common
|
|
|
|
ccflags-$(CFG_SOCT_BOOT_LOG_SUPPORT) += -DEXT_BOOT_LOG_SUPPORT
|
|
|
|
obj-y += boot_debug.o \
|
|
boot_mem.o \
|
|
drv_reg_common.o \
|
|
drv_sys.o \
|
|
cmd/cmd_common_test.o
|
|
|
|
ifneq ($(filter reserved9 reserved6 reserved8 reserved23,$(CFG_SOCT_CHIP_TYPE)),)
|
|
obj-y += hal/reserved13/hal_sys.o
|
|
else
|
|
ifneq ($(filter reserved17,$(CFG_SOCT_CHIP_TYPE)),)
|
|
obj-y += hal/reserved19/hal_sys.o
|
|
else
|
|
obj-y += hal/$(CFG_SOCT_CHIP_TYPE)/hal_sys.o
|
|
endif
|
|
endif
|
|
|