mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
2331448644
With #10970 only existing *.c files will be added to SRC when using the SUBMODULES mechanism, so SUBMODULES_NOFORCE (used to filter out non existing source files) is now redundant so remove the usage.
17 lines
345 B
Makefile
17 lines
345 B
Makefile
# make all code end up in "ztimer_core.a"
|
|
MODULE := ztimer_core
|
|
|
|
# ensure that "ztimer_foo" builds "ztimer_foo.c", not "ztimer_core_foo.c"
|
|
BASE_MODULE := ztimer
|
|
|
|
# ztimer_core files
|
|
SRC := core.c util.c
|
|
|
|
# enable submodules
|
|
SUBMODULES := 1
|
|
|
|
# disable obsolete warning
|
|
CFLAGS += -Wno-missing-field-initializers
|
|
|
|
include $(RIOTBASE)/Makefile.base
|