mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-15 17:43:51 +01:00
16 lines
602 B
Makefile
16 lines
602 B
Makefile
# This file declares DEFAULT_MODULEs that MAY have dependencies themselves
|
|
# and whose dependencies MAY have dependencies as well.
|
|
# These DEFAULT_MODULEs MUST only be disabled at application level or
|
|
# in BOARD/CPU Makefile.default.
|
|
|
|
DEFAULT_MODULE += board board_common_init \
|
|
cpu \
|
|
core core_init core_lib core_msg core_panic core_thread \
|
|
sys libc
|
|
|
|
# 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
|