1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/ztimer/Makefile

14 lines
286 B
Makefile
Raw Normal View History

# 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
2020-09-16 08:28:03 +02:00
SRC := core.c util.c periodic.c
# enable submodules
SUBMODULES := 1
include $(RIOTBASE)/Makefile.base