build.mk 718 B

1234567891011121314
  1. ifeq ($(call gt,$(SMP),1),$(false))
  2. C_SRCDIRS += $(NUCLEI_SDK_RTOS)/common/src $(NUCLEI_SDK_RTOS)/ports/nuclei
  3. ASM_SRCDIRS += $(NUCLEI_SDK_RTOS)/ports/nuclei/gcc
  4. INCDIRS += $(NUCLEI_SDK_RTOS)/common/inc $(NUCLEI_SDK_RTOS)/ports/nuclei
  5. else
  6. C_SRCDIRS += $(NUCLEI_SDK_RTOS)/common_smp/src $(NUCLEI_SDK_RTOS)/ports_smp/nuclei
  7. ASM_SRCDIRS += $(NUCLEI_SDK_RTOS)/ports_smp/nuclei/gcc
  8. INCDIRS += $(NUCLEI_SDK_RTOS)/common_smp/inc $(NUCLEI_SDK_RTOS)/ports_smp/nuclei
  9. endif
  10. ifeq ($(THREADX_MODULE),1)
  11. C_SRCDIRS += $(NUCLEI_SDK_RTOS)/common_modules/module_manager/src $(NUCLEI_SDK_RTOS)/ports/nuclei/module_manager/src
  12. INCDIRS += $(NUCLEI_SDK_RTOS)/common_modules/module_manager/inc $(NUCLEI_SDK_RTOS)/common_modules/inc
  13. endif