2018-10-08 12:20:49 +02:00
|
|
|
# Define the module that is built:
|
|
|
|
MODULE = cpu
|
|
|
|
|
|
|
|
# Add a list of subdirectories, that should also be built:
|
2018-12-27 17:28:46 +01:00
|
|
|
DIRS += $(RIOTCPU)/esp_common
|
2018-10-08 12:20:49 +02:00
|
|
|
DIRS += periph
|
|
|
|
DIRS += vendor
|
|
|
|
|
2019-08-21 22:55:08 +02:00
|
|
|
ifneq (, $(filter esp_cxx, $(USEMODULE)))
|
|
|
|
DIRS += cxx
|
|
|
|
endif
|
|
|
|
|
2018-10-08 12:20:49 +02:00
|
|
|
ifneq (, $(filter esp_eth, $(USEMODULE)))
|
|
|
|
DIRS += esp-eth
|
|
|
|
endif
|
|
|
|
|
2019-12-12 13:46:20 +01:00
|
|
|
ifneq (, $(filter esp_freertos, $(USEMODULE)))
|
2019-08-05 14:18:22 +02:00
|
|
|
DIRS += freertos
|
|
|
|
endif
|
|
|
|
|
2018-10-08 12:20:49 +02:00
|
|
|
include $(RIOTBASE)/Makefile.base
|