mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-19 19:43:52 +01:00
20 lines
436 B
Makefile
20 lines
436 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_hdr,$(USEMODULE)))
|
|
DIRS += hdr
|
|
endif
|
|
ifneq (,$(filter gnrc_netif_lorawan,$(USEMODULE)))
|
|
DIRS += lorawan
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|