mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
645ac53fe0
This allows boards and CPUs to define a Makefile.default file where default modules can be added before the normal dependency resolution.
13 lines
368 B
Makefile
13 lines
368 B
Makefile
DEFAULT_MODULE += board cpu core core_init core_msg core_panic sys
|
|
|
|
DEFAULT_MODULE += auto_init
|
|
|
|
# Initialize all used peripherals by default
|
|
DEFAULT_MODULE += periph_init
|
|
|
|
# Include potentially added default modules by the board
|
|
-include $(BOARDDIR)/Makefile.default
|
|
|
|
# Include potentially added default modules by the CPU
|
|
-include $(RIOTCPU)/$(CPU)/Makefile.default
|