From 28bda0b248db6f5a506eb59cd7bc1720994a5709 Mon Sep 17 00:00:00 2001 From: Michel Pollet Date: Tue, 4 Mar 2014 08:50:17 +0000 Subject: [PATCH] make: Allow override of root path Allows inclusion of Makefile.common from out of tree. Signed-off-by: Michel Pollet --- Makefile.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.common b/Makefile.common index 0477af2..72c4c06 100644 --- a/Makefile.common +++ b/Makefile.common @@ -27,7 +27,7 @@ # along with simavr. If not, see . # simavr directory -SIMAVR := ${shell for p in . .. ../.. ../../..;do test -d $$p/simavr/sim && echo $$p/simavr; done} +SIMAVR ?= ${shell for p in . .. ../.. ../../..;do test -d $$p/simavr/sim && echo $$p/simavr; done} # You can override the build settings with local changes in this file # for example: -- 2.39.5