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.
18 lines
727 B
18 lines
727 B
ifeq ($(LOSCFG_COMPAT_CMSIS), y)
|
|
LITEOS_CMSIS_INCLUDE += \
|
|
-I $(LITEOSTOPDIR)/compat/cmsis \
|
|
-I $(LITEOS_CMSIS_PATH)/CMSIS/RTOS/LiteOS/INC \
|
|
-I $(LITEOS_CMSIS_PATH)/CMSIS/RTOS2/Include
|
|
endif
|
|
|
|
ifeq ($(LOSCFG_COMPAT_LINUX), y)
|
|
LITEOS_LINUX_INCLUDE += -I $(LITEOSTOPDIR)/compat/linux/include
|
|
LITEOS_LINUX_INCLUDE += -I $(LITEOSTOPDIR)/$(LITEOS_OPENSOURCE_PATHNAME)/freebsd/liteos/compat/linux/include
|
|
endif
|
|
|
|
LITEOS_NUTTX_INCLUDE := -I $(LITEOSTOPDIR)/compat/nuttx/include
|
|
|
|
LITEOS_COMPAT_INCLUDE := $(LITEOS_CMSIS_INCLUDE) \
|
|
$(LITEOS_LINUX_INCLUDE) \
|
|
$(LITEOS_NUTTX_INCLUDE)
|