1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-28 23:29:45 +01:00

Makefile.dep: include each sys included module deps if available

This commit is contained in:
Alexandre Abadie 2023-04-21 09:33:04 +02:00
parent 829af7c105
commit cbca7ca149
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -19,6 +19,9 @@ include $(RIOTBASE)/drivers/Makefile.dep
# pull Makefile.dep of each driver modules if they exist
-include $(sort $(USEMODULE:%=$(RIOTBASE)/drivers/%/Makefile.dep))
# pull Makefile.dep of each sys modules if they exist
-include $(sort $(USEMODULE:%=$(RIOTBASE)/sys/%/Makefile.dep))
# pull dependencies from packages
-include $(PKG_PATHS:%=%Makefile.dep)