change output64 to output in some unmanaged core buildscripts

This commit is contained in:
nattthebear 2017-06-12 16:13:54 -04:00
parent 89f7fb918c
commit 9c6ec5d8b1
4 changed files with 8 additions and 8 deletions

View File

@ -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 \

View File

@ -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 \

View File

@ -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 \

View File

@ -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 \