-
Notifications
You must be signed in to change notification settings - Fork 2
/
imports.mak
14 lines (14 loc) · 1.03 KB
/
imports.mak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Override the example's SDK INSTALL_DIR with this repo's appropriate submodule
ifneq ($(COM_TI_SIMPLELINK_LOWPOWER_F3_SDK_INSTALL_DIR),)
COM_TI_SIMPLELINK_LOWPOWER_F3_SDK_INSTALL_DIR:=$(COM_TI_SIMPLELINK_LOWPOWER_F3_SDK_INSTALL_DIR)/simplelink-lowpower-f3-sdk
include $(COM_TI_SIMPLELINK_LOWPOWER_F3_SDK_INSTALL_DIR)/imports.mak
else ifneq ($(COM_TI_SIMPLELINK_CC13XX_CC26XX_SDK_INSTALL_DIR),)
COM_TI_SIMPLELINK_CC13XX_CC26XX_SDK_INSTALL_DIR:=$(COM_TI_SIMPLELINK_CC13XX_CC26XX_SDK_INSTALL_DIR)/cc13xx_cc26xx_sdk
include $(COM_TI_SIMPLELINK_CC13XX_CC26XX_SDK_INSTALL_DIR)/imports.mak
else ifneq ($(SIMPLELINK_LOWPOWER_F3_SDK_INSTALL_DIR),)
SIMPLELINK_LOWPOWER_F3_SDK_INSTALL_DIR:=$(SIMPLELINK_LOWPOWER_F3_SDK_INSTALL_DIR)/simplelink-lowpower-f3-sdk
include $(SIMPLELINK_LOWPOWER_F3_SDK_INSTALL_DIR)/imports.mak
else ifneq ($(SIMPLELINK_CC13XX_CC26XX_SDK_INSTALL_DIR),)
SIMPLELINK_CC13XX_CC26XX_SDK_INSTALL_DIR:=$(SIMPLELINK_CC13XX_CC26XX_SDK_INSTALL_DIR)/cc13xx_cc26xx_sdk
include $(SIMPLELINK_CC13XX_CC26XX_SDK_INSTALL_DIR)/imports.mak
endif