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

36 lines
660 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
INCLUDES += -I$(RIOTBASE)/sys/auto_init/include
include $(RIOTBASE)/Makefile.base