component.mk 423 B

1234567891011121314
  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