component.mk 599 B

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