mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
331 B
Makefile
16 lines
331 B
Makefile
# additional modules dependencies
|
|
|
|
ifneq (, $(filter esp_spiffs, $(USEMODULE)))
|
|
export SPIFFS_STD_OPTION = -std=c99
|
|
USEMODULE += spiffs
|
|
USEMODULE += vfs
|
|
endif
|
|
|
|
ifneq (, $(filter esp_wifi, $(USEMODULE)))
|
|
USEMODULE += netdev_eth
|
|
endif
|
|
|
|
ifneq (,$(filter log_color,$(USEMODULE)))
|
|
USEMODULE += esp_log_colored
|
|
endif
|