mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
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
|