2018-09-05 02:39:50 +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
|
2019-09-05 13:17:47 +02:00
|
|
|
DIRS += freertos
|
2018-09-05 02:39:50 +02:00
|
|
|
DIRS += periph
|
|
|
|
DIRS += sdk
|
|
|
|
DIRS += vendor
|
|
|
|
|
2019-01-16 19:30:59 +01:00
|
|
|
ifneq (, $(filter esp_wifi, $(USEMODULE)))
|
|
|
|
DIRS += esp-wifi
|
|
|
|
endif
|
|
|
|
|
2019-10-18 17:45:40 +02:00
|
|
|
INCLUDES += -I$(ESP8266_RTOS_SDK_DIR)/components/esp8266/include/internal
|
2019-09-05 13:35:58 +02:00
|
|
|
|
2018-09-05 02:39:50 +02:00
|
|
|
include $(RIOTBASE)/Makefile.base
|