1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/auto_init/Makefile

42 lines
771 B
Makefile
Raw Normal View History

ifneq (,$(filter gnrc_netif_init,$(USEMODULE)))
2017-09-21 15:20:30 +02:00
DIRS += netif
endif
ifneq (,$(filter saul_init,$(USEMODULE)))
2017-09-21 15:20:30 +02:00
DIRS += saul
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
ifneq (,$(filter auto_init_loramac,$(USEMODULE)))
DIRS += loramac
endif
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
ifneq (,$(filter auto_init_security,$(USEMODULE)))
DIRS += security
endif
ifneq (,$(filter auto_init_screen,$(USEMODULE)))
DIRS += screen
endif
ifneq (,$(filter auto_init_wdt_event,$(USEMODULE)))
DIRS += wdt_event
endif
ifneq (,$(filter auto_init_wdt_thread,$(USEMODULE)))
DIRS += wdt_thread
endif
include $(RIOTBASE)/Makefile.base