1# 2# Component Makefile 3# currently the only SoC supported; to be moved into Kconfig 4TARGET := $(IDF_TARGET) 5 6COMPONENT_SRCDIRS := $(TARGET) src 7ifdef CONFIG_IDF_TARGET_ESP32 8COMPONENT_OBJEXCLUDE := src/esp_efuse_api_key_esp32xx.o 9else 10COMPONENT_OBJEXCLUDE := src/esp_efuse_api_key_esp32.o 11endif 12 13COMPONENT_PRIV_INCLUDEDIRS := private_include $(TARGET)/private_include 14COMPONENT_ADD_INCLUDEDIRS := include $(TARGET)/include 15 16ifdef CONFIG_EFUSE_VIRTUAL 17$(info eFuse virtual mode is enabled. If Secure boot or Flash encryption is enabled then it does not provide any security. FOR TESTING ONLY!) 18endif 19