mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
23 lines
505 B
Makefile
23 lines
505 B
Makefile
MODULE := gnrc_netif
|
|
|
|
ifneq (,$(filter gnrc_netif_ethernet,$(USEMODULE)))
|
|
DIRS += ethernet
|
|
endif
|
|
ifneq (,$(filter gnrc_netif_ieee802154,$(USEMODULE)))
|
|
DIRS += ieee802154
|
|
endif
|
|
ifneq (,$(filter gnrc_netif_init_devs,$(USEMODULE)))
|
|
DIRS += init_devs
|
|
endif
|
|
ifneq (,$(filter gnrc_netif_pktq,$(USEMODULE)))
|
|
DIRS += pktq
|
|
endif
|
|
ifneq (,$(filter gnrc_netif_hdr,$(USEMODULE)))
|
|
DIRS += hdr
|
|
endif
|
|
ifneq (,$(filter gnrc_netif_lorawan,$(USEMODULE)))
|
|
DIRS += lorawan
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|