1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/esp32/Makefile
Gunar Schorcht e0f1ab0a16 cpu/esp32: module esp_can removed
CAN controller driver for ESP32 is no longer realized as separate module.
2019-09-20 19:35:02 +02:00

26 lines
484 B
Makefile

# Define the module that is built:
MODULE = cpu
# Add a list of subdirectories, that should also be built:
DIRS += $(RIOTCPU)/esp_common
DIRS += periph
DIRS += vendor
ifneq (, $(filter esp_cxx, $(USEMODULE)))
DIRS += cxx
endif
ifneq (, $(filter esp_eth, $(USEMODULE)))
DIRS += esp-eth
endif
ifneq (, $(filter esp_wifi, $(USEMODULE)))
DIRS += esp-wifi
endif
ifneq (, $(filter riot_freertos, $(USEMODULE)))
DIRS += freertos
endif
include $(RIOTBASE)/Makefile.base