OVMS3-idf/components/esp_event/component.mk
2019-11-20 11:17:27 +01:00

19 lines
366 B
Makefile

#
# Component Makefile
#
COMPONENT_ADD_INCLUDEDIRS := include
COMPONENT_PRIV_INCLUDEDIRS := private_include
COMPONENT_SRCDIRS := .
COMPONENT_ADD_LDFRAGMENTS := linker.lf
ifdef CONFIG_ESP_EVENT_LOOP_PROFILING
PROFILING_ENABLED := 1
else
PROFILING_ENABLED := 0
endif
ifeq ($(PROFILING_ENABLED), 1)
# uses C11 atomic feature
esp_event.o: CFLAGS += -std=gnu11
endif