mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
241 B
Makefile
16 lines
241 B
Makefile
MODULE = ieee802154
|
|
|
|
SRC = \
|
|
ieee802154.c \
|
|
#
|
|
|
|
ifneq (,$(filter ieee802154_security,$(USEMODULE)))
|
|
SRC += security.c
|
|
endif
|
|
|
|
ifneq (,$(filter ieee802154_submac,$(USEMODULE)))
|
|
SRC += submac.c
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|