From 7f068650984430a0b21583f3be86b0fb93a6e0c5 Mon Sep 17 00:00:00 2001 From: Francisco Molina Date: Mon, 25 Jan 2021 09:06:54 +0100 Subject: [PATCH] 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 --- Makefile.dep | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.dep b/Makefile.dep index c7b9ced15b..299e441801 100644 --- a/Makefile.dep +++ b/Makefile.dep @@ -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