1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-16 20:52:58 +01:00
RIOT/cpu/cc2538/radio/Makefile

17 lines
328 B
Makefile
Raw Normal View History

2016-07-08 03:33:54 +02:00
MODULE = cc2538_rf
SRC = \
cc2538_rf.c \
cc2538_rf_getset.c \
cc2538_rf_internal.c \
#
# use netdev implementation when legacy is explicitly enabled
ifneq (,$(filter cc2538_rf_netdev_legacy,$(USEMODULE)))
SRC += cc2538_rf_netdev.c
else
SRC += cc2538_rf_radio_ops.c
endif
2016-07-08 03:33:54 +02:00
include $(RIOTBASE)/Makefile.base