From 419bfa89d1f03b1fea928e8dad038ff4a5fb1dde Mon Sep 17 00:00:00 2001 From: waltje Date: Tue, 27 Mar 2018 02:28:04 -0400 Subject: [PATCH] Whoops, one more for the path changes. --- src/Makefile.local | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Makefile.local b/src/Makefile.local index a082c33..5a9e0ac 100644 --- a/src/Makefile.local +++ b/src/Makefile.local @@ -10,7 +10,7 @@ # settings, so we can avoid changing the main one for all of # our local setups. # -# Version: @(#)Makefile.local 1.0.3 2018/03/21 +# Version: @(#)Makefile.local 1.0.4 2018/03/26 # # Author: Fred N. van Kempen, # @@ -54,6 +54,8 @@ # Name of the executable. #PROG := yourexe +# Build Platform. +BUILD := mingw/Makefile.MinGW # Various compile-time options. # -DROM_TRACE=0xc800 traces ROM access from segment C800 @@ -112,7 +114,7 @@ DYNAREC := y ######################################################################### # Include the master Makefile.MinGW for the rest. # ######################################################################### -include win/Makefile.mingw +include win/$(BUILD) # End of Makefile.local.