mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
20 lines
419 B
Makefile
20 lines
419 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
|
|
|
|
# "ztimer_extend" does not have corresponding .c
|
|
SUBMODULES_NOFORCE := 1
|
|
|
|
# disable obsolete warning
|
|
CFLAGS += -Wno-missing-field-initializers
|
|
|
|
include $(RIOTBASE)/Makefile.base
|