1SOC_NAME := $(IDF_TARGET)
2
3COMPONENT_SRCDIRS := .
4COMPONENT_ADD_INCLUDEDIRS := include
5COMPONENT_PRIV_INCLUDEDIRS := private_include port/include
6COMPONENT_ADD_LDFRAGMENTS += linker.lf
7
8include $(COMPONENT_PATH)/port/soc/$(SOC_NAME)/component.mk
9
10# disable stack protection in files which are involved in initialization of that feature
11startup.o: CFLAGS := $(filter-out -fstack-protector%, $(CFLAGS))
12