2019-03-21 04:21:01 +00:00
|
|
|
#
|
|
|
|
# Component Makefile
|
|
|
|
#
|
|
|
|
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
|
|
COMPONENT_SRCDIRS := src
|
|
|
|
|
2019-08-15 07:05:59 +00:00
|
|
|
# IPC framework is not applicable if freertos unicore config is selected
|
|
|
|
ifdef CONFIG_FREERTOS_UNICORE
|
|
|
|
COMPONENT_OBJEXCLUDE := src/ipc.o
|
|
|
|
endif
|
|
|
|
|
2019-03-21 04:21:01 +00:00
|
|
|
# disable stack protection in files which are involved in initialization of that feature
|
2019-06-06 13:21:52 +00:00
|
|
|
src/stack_check.o: CFLAGS := $(filter-out -fstack-protector%, $(CFLAGS))
|