2018-12-27 17:28:46 +01:00
|
|
|
# add a list of subdirectories, that should also be build
|
2019-12-16 08:04:01 +01:00
|
|
|
DIRS += periph
|
2022-03-09 16:50:33 +01:00
|
|
|
|
|
|
|
ifneq (,$(filter xtensa%,$(TARGET_ARCH)))
|
|
|
|
DIRS += vendor
|
|
|
|
endif
|
2019-01-27 14:33:30 +01:00
|
|
|
|
2019-12-13 07:50:53 +01:00
|
|
|
ifneq (,$(filter esp_freertos_common,$(USEMODULE)))
|
|
|
|
DIRS += freertos
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq (,$(filter esp_now,$(USEMODULE)))
|
|
|
|
DIRS += esp-now
|
2018-12-27 17:28:46 +01:00
|
|
|
endif
|
|
|
|
|
2019-12-16 01:47:44 +01:00
|
|
|
ifneq (,$(filter esp_wifi,$(USEMODULE)))
|
|
|
|
DIRS += esp-wifi
|
|
|
|
endif
|
|
|
|
|
2022-06-25 19:43:01 +02:00
|
|
|
ifneq (,$(filter esp_xtensa,$(USEMODULE)))
|
|
|
|
DIRS += esp-xtensa
|
|
|
|
endif
|
|
|
|
|
2022-06-25 23:51:56 +02:00
|
|
|
ifneq (,$(filter esp_riscv,$(USEMODULE)))
|
|
|
|
DIRS += esp-riscv
|
|
|
|
endif
|
|
|
|
|
2018-12-27 17:28:46 +01:00
|
|
|
include $(RIOTBASE)/Makefile.base
|