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

Makefile.dep: add TOOLCHAIN specific dependencies

This commit allows to add a Makefile.dep file in an application
directory to finely tune application dependencies, based on the
used TOOLCHAIN.

Using this mechanism, if an application has dependencies pulled-in based
on the TOOLCHAIN, info-boards-supported, will take this into account to
determine the boards supported by an application
This commit is contained in:
Francisco Molina 2021-01-25 09:06:54 +01:00
parent 1ed4c3a230
commit 7f06865098
No known key found for this signature in database
GPG Key ID: 3E94EAC3DBDEEDA8

View File

@ -1,5 +1,6 @@
# include board specific application dependencies
-include $(APPDIR)/Makefile.board.dep
-include $(APPDIR)/Makefile.$(TOOLCHAIN).dep
# include board dependencies
-include $(BOARDDIR)/Makefile.dep