From a131ea757656b5aca176d2301b188ab7b87d9d03 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Mon, 18 Nov 2019 15:51:44 +0100 Subject: [PATCH] Makefile.dep: include board specific application dependency file This commit allows to add a Makefile.dep file in an application directory to finely tune application dependencies, based on a board. Using this mechanism, if an application has dependencies pulled-in based on a board, info-boards-supported, will take this into account to determine the boards supported by an application --- Makefile.dep | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.dep b/Makefile.dep index d7b84f0c26..98a39481c3 100644 --- a/Makefile.dep +++ b/Makefile.dep @@ -2,6 +2,9 @@ OLD_USEMODULE := $(sort $(USEMODULE)) OLD_USEPKG := $(sort $(USEPKG)) +# include board specific application dependencies +-include $(APPDIR)/Makefile.board.dep + # include board dependencies -include $(RIOTBOARD)/$(BOARD)/Makefile.dep