mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
844ccfbeb3
Co-authored-by: Peter Kietzmann <peter.kietzmann@haw-hamburg.de> Co-authored-by: Jose Alamos <jose.alamos@haw-hamburg.de> Co-authored-by: Michel Rottleuthner <michel.rottleuthner@haw-hamburg.de>
14 lines
271 B
Makefile
14 lines
271 B
Makefile
MODULE = openwsn
|
|
|
|
SRC := $(filter-out sctimer_% ,$(wildcard *.c))
|
|
|
|
ifneq (,$(filter openwsn_sctimer_rtt,$(USEMODULE)))
|
|
SRC += sctimer_rtt.c
|
|
endif
|
|
|
|
ifneq (,$(filter openwsn_sctimer_ztimer,$(USEMODULE)))
|
|
SRC += sctimer_ztimer.c
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|