mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Kaspar Schleiser
3db7c1150a
This commit splits core into it's scheduler/IPC part and into other code that is either used or uses the scheduler, through defined APIs.
13 lines
336 B
Makefile
13 lines
336 B
Makefile
MODULE = core_lib
|
|
|
|
# enable submodules
|
|
SUBMODULES := 1
|
|
# set this so the panic and init code is available as "core_panic" and "core_init"
|
|
# instead of "core_lib_..."
|
|
BASE_MODULE = core
|
|
|
|
# exclude submodule sources from *.c wildcard source selection
|
|
SRC := $(filter-out panic.c init.c,$(wildcard *.c))
|
|
|
|
include $(RIOTBASE)/Makefile.base
|