mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
08524ca1d2
No that we introduced sub-modules to `gnrc_netif` we can move that here as well.
14 lines
282 B
Makefile
14 lines
282 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_hdr,$(USEMODULE)))
|
|
DIRS += hdr
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|