mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-16 17:12:45 +01:00
702c3435a8
Only nimble depends on GNRC, but we want to replace gnrc_netdev_default with netdev_default, so check for gnrc instead.
8 lines
194 B
Makefile
8 lines
194 B
Makefile
ifneq (,$(filter netdev_default,$(USEMODULE)))
|
|
ifneq (,$(filter gnrc,$(USEMODULE)))
|
|
ifeq (,$(filter nrfmin nrf802154,$(USEMODULE)))
|
|
USEMODULE += nimble_netif
|
|
endif
|
|
endif
|
|
endif
|