1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/esp32/vendor/esp-idf/Makefile

23 lines
418 B
Makefile
Raw Normal View History

2018-10-08 12:20:49 +02:00
MODULE=esp_idf
DIRS += driver
DIRS += esp32
DIRS += soc
DIRS += spi_flash
ifneq (,$(filter esp_idf_heap,$(USEMODULE)))
DIRS += heap
endif
2018-10-08 12:20:49 +02:00
ifneq (,$(filter esp_wifi_any,$(USEMODULE)))
DIRS += nvs_flash
DIRS += wpa_supplicant
2018-10-08 12:20:49 +02:00
INCLUDES += -I$(ESP32_SDK_DIR)/components/smartconfig_ack/include
endif
ifneq (,$(filter esp_eth,$(USEMODULE)))
DIRS += ethernet
endif
include $(RIOTBASE)/Makefile.base