1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/esp32/Makefile

18 lines
347 B
Makefile
Raw Normal View History

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:
DIRS += $(RIOTCPU)/esp_common
2018-10-08 12:20:49 +02:00
DIRS += periph
DIRS += vendor
ifneq (, $(filter esp_eth, $(USEMODULE)))
DIRS += esp-eth
endif
2019-12-12 13:46:20 +01:00
ifneq (, $(filter esp_freertos, $(USEMODULE)))
DIRS += freertos
endif
2018-10-08 12:20:49 +02:00
include $(RIOTBASE)/Makefile.base