build.mk 525 B

1234567891011121314
  1. C_SRCDIRS += $(NUCLEI_SDK_RTOS)/Source $(NUCLEI_SDK_RTOS)/Source/portable/GCC
  2. # heap management selection, choose 1 from the portable/MemMang/heap_*.c
  3. C_SRCS += $(NUCLEI_SDK_RTOS)/Source/portable/MemMang/heap_4.c
  4. C_SRCS += $(NUCLEI_SDK_RTOS)/Source/portable/port.c
  5. ASM_SRCDIRS += $(NUCLEI_SDK_RTOS)/Source/portable/GCC
  6. INCDIRS += $(NUCLEI_SDK_RTOS)/Source/include \
  7. $(NUCLEI_SDK_RTOS)/Source/portable
  8. # Enable SMP FreeRTOS support when SMP is defined
  9. ifneq ($(SMP),)
  10. COMMON_FLAGS += -DconfigNUMBER_OF_CORES=$(SMP)
  11. endif