mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-15 21:52:46 +01:00
18 lines
333 B
Makefile
18 lines
333 B
Makefile
# add a list of subdirectories, that should also be build
|
|
DIRS += periph
|
|
DIRS += vendor
|
|
|
|
ifneq (,$(filter esp_freertos_common,$(USEMODULE)))
|
|
DIRS += freertos
|
|
endif
|
|
|
|
ifneq (,$(filter esp_now,$(USEMODULE)))
|
|
DIRS += esp-now
|
|
endif
|
|
|
|
ifneq (,$(filter esp_wifi,$(USEMODULE)))
|
|
DIRS += esp-wifi
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|