2017-11-16 18:06:46 +01:00
|
|
|
MODULE := gnrc_netif
|
2017-05-16 13:23:54 +02:00
|
|
|
|
2018-12-05 14:22:14 +01:00
|
|
|
ifneq (,$(filter gnrc_netif_ethernet,$(USEMODULE)))
|
|
|
|
DIRS += ethernet
|
|
|
|
endif
|
|
|
|
ifneq (,$(filter gnrc_netif_ieee802154,$(USEMODULE)))
|
|
|
|
DIRS += ieee802154
|
|
|
|
endif
|
2020-03-04 15:50:25 +01:00
|
|
|
ifneq (,$(filter gnrc_netif_init_devs,$(USEMODULE)))
|
|
|
|
DIRS += init_devs
|
|
|
|
endif
|
2018-12-05 15:04:37 +01:00
|
|
|
ifneq (,$(filter gnrc_netif_hdr,$(USEMODULE)))
|
|
|
|
DIRS += hdr
|
|
|
|
endif
|
2019-03-07 17:12:59 +01:00
|
|
|
ifneq (,$(filter gnrc_netif_lorawan,$(USEMODULE)))
|
|
|
|
DIRS += lorawan
|
|
|
|
endif
|
2018-12-05 14:22:14 +01:00
|
|
|
|
2017-05-16 13:23:54 +02:00
|
|
|
include $(RIOTBASE)/Makefile.base
|