1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

sys: add auto_init includes treewide

This commit is contained in:
Francisco Molina 2022-04-25 16:02:29 +02:00 committed by Fabian Hüßler
parent b4dcbba26d
commit faa0e05f4b
2 changed files with 4 additions and 2 deletions

View File

@ -56,6 +56,10 @@ ifneq (,$(filter app_metadata,$(USEMODULE)))
endif endif
endif endif
ifneq (,$(filter auto_init,$(USEMODULE)))
USEMODULE_INCLUDES += $(RIOTBASE)/sys/auto_init/include
endif
ifneq (,$(filter cpp11-compat,$(USEMODULE))) ifneq (,$(filter cpp11-compat,$(USEMODULE)))
USEMODULE_INCLUDES += $(RIOTBASE)/sys/cpp11-compat/include USEMODULE_INCLUDES += $(RIOTBASE)/sys/cpp11-compat/include
endif endif

View File

@ -30,6 +30,4 @@ ifneq (,$(filter auto_init_screen,$(USEMODULE)))
DIRS += screen DIRS += screen
endif endif
INCLUDES += -I$(RIOTBASE)/sys/auto_init/include
include $(RIOTBASE)/Makefile.base include $(RIOTBASE)/Makefile.base