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

30 lines
542 B
Makefile
Raw Normal View History

ifneq (,$(filter auto_init_gnrc_netif,$(USEMODULE)))
2017-09-21 15:20:30 +02:00
DIRS += netif
endif
ifneq (,$(filter auto_init_saul,$(USEMODULE)))
2017-09-21 15:20:30 +02:00
DIRS += saul
endif
ifneq (,$(filter auto_init_storage,$(USEMODULE)))
2017-09-21 15:20:30 +02:00
DIRS += storage
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
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
include $(RIOTBASE)/Makefile.base