2019-03-21 12:21:01 +08:00
|
|
|
#
|
|
|
|
# Component Makefile
|
|
|
|
#
|
|
|
|
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
|
|
COMPONENT_SRCDIRS := src
|
|
|
|
|
2020-07-29 22:03:46 +08:00
|
|
|
ifndef CONFIG_IDF_ENV_FPGA
|
|
|
|
COMPONENT_OBJEXCLUDE += src/fpga_overrides.o
|
|
|
|
endif
|
|
|
|
|
2019-03-21 12:21:01 +08:00
|
|
|
# disable stack protection in files which are involved in initialization of that feature
|
2019-06-06 18:51:52 +05:30
|
|
|
src/stack_check.o: CFLAGS := $(filter-out -fstack-protector%, $(CFLAGS))
|