component.mk 395 B

1234567891011121314
  1. #
  2. # Component Makefile
  3. #
  4. COMPONENT_ADD_INCLUDEDIRS := include
  5. COMPONENT_SRCDIRS := src
  6. # IPC framework is not applicable if freertos unicore config is selected
  7. ifdef CONFIG_FREERTOS_UNICORE
  8. COMPONENT_OBJEXCLUDE := src/ipc.o
  9. endif
  10. # disable stack protection in files which are involved in initialization of that feature
  11. src/stack_check.o: CFLAGS := $(filter-out -fstack-protector%, $(CFLAGS))