mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
22 lines
440 B
Makefile
22 lines
440 B
Makefile
MODULE = openwsn
|
|
|
|
SRC := $(filter-out sctimer_% radio_%,$(wildcard *.c))
|
|
|
|
ifneq (,$(filter openwsn_sctimer_rtt,$(USEMODULE)))
|
|
SRC += sctimer_rtt.c
|
|
endif
|
|
|
|
ifneq (,$(filter openwsn_sctimer_ztimer,$(USEMODULE)))
|
|
SRC += sctimer_ztimer.c
|
|
endif
|
|
|
|
ifneq (,$(filter openwsn_radio_hal,$(USEMODULE)))
|
|
SRC += radio_hal.c
|
|
endif
|
|
|
|
ifneq (,$(filter openwsn_radio_netdev,$(USEMODULE)))
|
|
SRC += radio_netdev.c
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|