Skip to content

Commit

Permalink
Reset order of including Makefile.local
Browse files Browse the repository at this point in the history
  • Loading branch information
thoni56 committed May 30, 2019
1 parent 799ecf8 commit d2de048
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions compiler/Makefile
Expand Up @@ -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
Expand All @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions interpreter/Makefile
Expand Up @@ -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
Expand All @@ -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)

Expand Down

0 comments on commit d2de048

Please sign in to comment.