2018-10-26 05:14:19 +00:00
|
|
|
#
|
|
|
|
# Component Makefile
|
|
|
|
#
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
|
|
COMPONENT_PRIV_INCLUDEDIRS := private_include
|
2019-02-15 13:28:24 +00:00
|
|
|
COMPONENT_SRCDIRS := .
|
|
|
|
|
|
|
|
ifdef CONFIG_EVENT_LOOP_PROFILING
|
|
|
|
PROFILING_ENABLED := 1
|
|
|
|
else
|
|
|
|
PROFILING_ENABLED := 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(and $(GCC_NOT_5_2_0),$(PROFILING_ENABLED)), 1)
|
|
|
|
# uses C11 atomic feature
|
|
|
|
esp_event.o: CFLAGS += -std=gnu11
|
|
|
|
endif
|