From 9c6ec5d8b118805825424759a99a86645da94071 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Mon, 12 Jun 2017 16:13:54 -0400 Subject: [PATCH] change output64 to output in some unmanaged core buildscripts --- libgambatte/Makefile | 4 ++-- lynx/mingw/Makefile | 4 ++-- quicknes/mingw/Makefile | 4 ++-- wonderswan/mingw/Makefile | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/libgambatte/Makefile b/libgambatte/Makefile index 152f913d1d..33e7712716 100644 --- a/libgambatte/Makefile +++ b/libgambatte/Makefile @@ -4,7 +4,7 @@ CP = cp MACHINE = $(shell $(CXX) -dumpmachine) ifneq (,$(findstring i686,$(MACHINE))) - ARCH = 32 + $(error 32 bit build no longer supported) else ifneq (,$(findstring x86_64,$(MACHINE))) ARCH = 64 else @@ -18,7 +18,7 @@ LDFLAGS_64 = LDFLAGS = -shared $(LDFLAGS_$(ARCH)) $(CXXFLAGS) DEST_32 = ../output/dll -DEST_64 = ../output64/dll +DEST_64 = ../output/dll SRCS = \ src/cinterface.cpp \ diff --git a/lynx/mingw/Makefile b/lynx/mingw/Makefile index 1ab0e687cf..67cf91df85 100644 --- a/lynx/mingw/Makefile +++ b/lynx/mingw/Makefile @@ -4,7 +4,7 @@ CP = cp MACHINE = $(shell $(CXX) -dumpmachine) ifneq (,$(findstring i686,$(MACHINE))) - ARCH = 32 + $(error 32 bit build no longer supported) else ifneq (,$(findstring x86_64,$(MACHINE))) ARCH = 64 else @@ -19,7 +19,7 @@ LDFLAGS_64 = LDFLAGS = -shared $(LDFLAGS_$(ARCH)) $(CXXFLAGS) DEST_32 = ../../output/dll -DEST_64 = ../../output64/dll +DEST_64 = ../../output/dll SRCS = \ ../c65c02.cpp \ diff --git a/quicknes/mingw/Makefile b/quicknes/mingw/Makefile index 97ea9797d0..109c71a97d 100644 --- a/quicknes/mingw/Makefile +++ b/quicknes/mingw/Makefile @@ -4,7 +4,7 @@ CP = cp MACHINE = $(shell $(CXX) -dumpmachine) ifneq (,$(findstring i686,$(MACHINE))) - ARCH = 32 + $(error 32 bit build no longer supported) else ifneq (,$(findstring x86_64,$(MACHINE))) ARCH = 64 else @@ -23,7 +23,7 @@ LDFLAGS_64 = LDFLAGS = -shared $(LDFLAGS_$(ARCH)) $(CXXFLAGS) DEST_32 = ../../output/dll -DEST_64 = ../../output64/dll +DEST_64 = ../../output/dll SRCS = \ ../nes_emu/abstract_file.cpp \ diff --git a/wonderswan/mingw/Makefile b/wonderswan/mingw/Makefile index 03e7b90727..da7f3d57cf 100644 --- a/wonderswan/mingw/Makefile +++ b/wonderswan/mingw/Makefile @@ -4,7 +4,7 @@ CP = cp MACHINE = $(shell $(CXX) -dumpmachine) ifneq (,$(findstring i686,$(MACHINE))) - ARCH = 32 + $(error 32 bit build no longer supported) else ifneq (,$(findstring x86_64,$(MACHINE))) ARCH = 64 else @@ -19,7 +19,7 @@ LDFLAGS_64 = LDFLAGS = -shared $(LDFLAGS_$(ARCH)) $(CXXFLAGS) DEST_32 = ../../output/dll -DEST_64 = ../../output64/dll +DEST_64 = ../../output/dll SRCS = \ ../eeprom.cpp \