1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-31 09:21:19 +01:00

gnrc_netif_hdr: move path resolve to gnrc_netif submodule resolution

No that we introduced sub-modules to `gnrc_netif` we can move that here
as well.
This commit is contained in:
Martine Lenders 2018-12-05 15:04:37 +01:00
parent 72c5fd06b4
commit 08524ca1d2
2 changed files with 3 additions and 3 deletions

View File

@ -37,9 +37,6 @@ endif
ifneq (,$(filter gnrc_netif gnrc_netif_%,$(USEMODULE)))
DIRS += netif
endif
ifneq (,$(filter gnrc_netif_hdr,$(USEMODULE)))
DIRS += netif/hdr
endif
ifneq (,$(filter gnrc_netreg,$(USEMODULE)))
DIRS += netreg
endif

View File

@ -6,5 +6,8 @@ endif
ifneq (,$(filter gnrc_netif_ieee802154,$(USEMODULE)))
DIRS += ieee802154
endif
ifneq (,$(filter gnrc_netif_hdr,$(USEMODULE)))
DIRS += hdr
endif
include $(RIOTBASE)/Makefile.base