From d2de0489ecb4169b0354ac9a2d90476169f9b41b Mon Sep 17 00:00:00 2001 From: Thomas Nilefalk Date: Thu, 30 May 2019 12:24:28 +0200 Subject: [PATCH] Reset order of including Makefile.local --- compiler/Makefile | 4 ++-- interpreter/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/Makefile b/compiler/Makefile index 39ca68659..5e1818c8d 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -22,8 +22,6 @@ INCLUDED = true # Include the common source lists and symbols for various groups of them include sources.mk --include Makefile.$(OS) - # Read possible local dependencies and EXTRA_TARGETS to enable ifneq ($(wildcard Makefile.local),) include Makefile.local @@ -32,6 +30,8 @@ else include Makefile.local.template endif +-include Makefile.$(OS) + # Do we have Cgreen available? CGREEN:=$(if $(shell which cgreen-runner 2> /dev/null),yes,no) diff --git a/interpreter/Makefile b/interpreter/Makefile index b52ff0187..ce3d52f6d 100644 --- a/interpreter/Makefile +++ b/interpreter/Makefile @@ -17,8 +17,6 @@ INCLUDED = true # Include list of all sources and symbols for various groups of them include sources.mk --include Makefile.$(OS) - # Read possible local dependencies and EXTRA_TARGETS to enable ifneq ($(wildcard Makefile.local),) include Makefile.local @@ -27,6 +25,8 @@ else include Makefile.local.template endif +-include Makefile.$(OS) + # Do we have Cgreen available? CGREEN:=$(if $(shell which cgreen-runner 2> /dev/null),yes,no)