mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
20 lines
358 B
Makefile
20 lines
358 B
Makefile
MODULE=esp_idf
|
|
|
|
DIRS += driver
|
|
DIRS += esp32
|
|
DIRS += heap
|
|
DIRS += soc
|
|
DIRS += spi_flash
|
|
DIRS += wpa_supplicant
|
|
|
|
ifneq (,$(filter esp_wifi_any,$(USEMODULE)))
|
|
DIRS += nvs_flash
|
|
INCLUDES += -I$(ESP32_SDK_DIR)/components/smartconfig_ack/include
|
|
endif
|
|
|
|
ifneq (,$(filter esp_eth,$(USEMODULE)))
|
|
DIRS += ethernet
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|