mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
278 B
Makefile
16 lines
278 B
Makefile
DIRS += $(AUTO_INIT_MODULES)
|
|
|
|
ifneq (,$(filter auto_init_gnrc_netif,$(USEMODULE)))
|
|
DIRS += netif
|
|
endif
|
|
|
|
ifneq (,$(filter auto_init_saul,$(USEMODULE)))
|
|
DIRS += saul
|
|
endif
|
|
|
|
ifneq (,$(filter auto_init_storage,$(USEMODULE)))
|
|
DIRS += storage
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|