2020-03-04 15:50:25 +01:00
|
|
|
ifneq (,$(filter gnrc_netif_init,$(USEMODULE)))
|
2017-09-21 15:20:30 +02:00
|
|
|
DIRS += netif
|
2015-05-08 15:47:11 +02:00
|
|
|
endif
|
|
|
|
|
2020-03-04 15:50:52 +01:00
|
|
|
ifneq (,$(filter saul_init,$(USEMODULE)))
|
2017-09-21 15:20:30 +02:00
|
|
|
DIRS += saul
|
2015-11-18 16:13:33 +01:00
|
|
|
endif
|
|
|
|
|
2016-11-23 19:05:35 +01:00
|
|
|
ifneq (,$(filter auto_init_can,$(USEMODULE)))
|
2017-09-21 15:20:30 +02:00
|
|
|
DIRS += can
|
2016-11-23 19:05:35 +01:00
|
|
|
endif
|
|
|
|
|
2019-04-16 13:42:40 +02:00
|
|
|
ifneq (,$(filter auto_init_loramac,$(USEMODULE)))
|
|
|
|
DIRS += loramac
|
|
|
|
endif
|
|
|
|
|
2019-08-29 11:20:56 +02:00
|
|
|
ifneq (,$(filter auto_init_multimedia,$(USEMODULE)))
|
|
|
|
DIRS += multimedia
|
|
|
|
endif
|
|
|
|
|
2019-02-06 12:00:19 +01:00
|
|
|
ifneq (,$(filter auto_init_usbus,$(USEMODULE)))
|
|
|
|
DIRS += usb
|
|
|
|
endif
|
|
|
|
|
2020-01-28 18:34:32 +01:00
|
|
|
ifneq (,$(filter auto_init_security,$(USEMODULE)))
|
|
|
|
DIRS += security
|
|
|
|
endif
|
|
|
|
|
2020-06-21 18:26:14 +02:00
|
|
|
ifneq (,$(filter auto_init_screen,$(USEMODULE)))
|
|
|
|
DIRS += screen
|
|
|
|
endif
|
|
|
|
|
2022-06-24 15:01:10 +02:00
|
|
|
ifneq (,$(filter auto_init_wdt_event,$(USEMODULE)))
|
|
|
|
DIRS += wdt_event
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq (,$(filter auto_init_wdt_thread,$(USEMODULE)))
|
|
|
|
DIRS += wdt_thread
|
|
|
|
endif
|
|
|
|
|
2013-03-09 23:47:21 +01:00
|
|
|
include $(RIOTBASE)/Makefile.base
|