2012-06-15 23:00:17 +00:00
|
|
|
DEBUG = 0
|
2012-10-22 12:34:14 +00:00
|
|
|
FRONTEND_SUPPORTS_RGB565 = 1
|
2012-06-15 23:00:17 +00:00
|
|
|
|
2015-07-26 15:25:48 +00:00
|
|
|
CORE_DIR := .
|
2012-10-20 21:32:28 +00:00
|
|
|
|
2017-12-19 01:51:58 +00:00
|
|
|
SPACE :=
|
|
|
|
SPACE := $(SPACE) $(SPACE)
|
|
|
|
BACKSLASH :=
|
|
|
|
BACKSLASH := \$(BACKSLASH)
|
|
|
|
filter_out1 = $(filter-out $(firstword $1),$1)
|
|
|
|
filter_out2 = $(call filter_out1,$(call filter_out1,$1))
|
2018-02-19 10:17:29 +00:00
|
|
|
unixpath = $(subst \,/,$1)
|
|
|
|
unixcygpath = /$(subst :,,$(call unixpath,$1))
|
2017-12-19 01:51:58 +00:00
|
|
|
|
2012-06-09 22:46:41 +00:00
|
|
|
ifeq ($(platform),)
|
2017-04-06 20:20:25 +00:00
|
|
|
platform = unix
|
|
|
|
ifeq ($(shell uname -a),)
|
|
|
|
platform = win
|
|
|
|
else ifneq ($(findstring Darwin,$(shell uname -a)),)
|
|
|
|
platform = osx
|
|
|
|
arch = intel
|
|
|
|
ifeq ($(shell uname -p),powerpc)
|
|
|
|
arch = ppc
|
|
|
|
endif
|
|
|
|
else ifneq ($(findstring MINGW,$(shell uname -a)),)
|
|
|
|
platform = win
|
|
|
|
endif
|
|
|
|
else ifneq (,$(findstring armv,$(platform)))
|
|
|
|
override platform += unix
|
|
|
|
else ifneq (,$(findstring rpi,$(platform)))
|
|
|
|
override platform += unix
|
2012-06-09 22:46:41 +00:00
|
|
|
endif
|
|
|
|
|
2012-10-20 20:35:08 +00:00
|
|
|
# If you have a system with 1GB RAM or more - cache the whole
|
2012-11-25 02:41:54 +00:00
|
|
|
# CD for CD-based systems in order to prevent file access delays/hiccups
|
2012-10-20 20:35:08 +00:00
|
|
|
CACHE_CD = 0
|
|
|
|
|
2015-07-26 15:25:48 +00:00
|
|
|
HAVE_HES = 0
|
|
|
|
NEED_BPP = 32
|
|
|
|
NEED_TREMOR = 1
|
|
|
|
NEED_BLIP = 1
|
|
|
|
NEED_CD = 1
|
|
|
|
NEED_CRC32 = 1
|
|
|
|
WANT_NEW_API = 1
|
|
|
|
CORE_DEFINE := -DWANT_PCE_FAST_EMU -DWANT_STEREO_SOUND
|
2017-08-05 17:47:05 +00:00
|
|
|
HAVE_CHD = 1
|
2012-10-20 23:47:02 +00:00
|
|
|
|
2017-02-24 13:14:37 +00:00
|
|
|
prefix := /usr
|
|
|
|
libdir := $(prefix)/lib
|
|
|
|
|
|
|
|
LIBRETRO_INSTALL_DIR := libretro
|
2016-09-07 04:00:43 +00:00
|
|
|
TARGET_NAME := mednafen_pce_fast
|
2017-04-06 20:20:25 +00:00
|
|
|
|
|
|
|
# GIT HASH
|
2016-12-09 23:22:00 +00:00
|
|
|
GIT_VERSION := " $(shell git rev-parse --short HEAD || echo unknown)"
|
|
|
|
ifneq ($(GIT_VERSION)," unknown")
|
2017-04-06 20:20:25 +00:00
|
|
|
CXXFLAGS += -DGIT_VERSION=\"$(GIT_VERSION)\"
|
2016-12-09 23:22:00 +00:00
|
|
|
endif
|
2012-10-20 23:47:02 +00:00
|
|
|
|
2014-04-14 04:51:43 +00:00
|
|
|
arch = intel
|
|
|
|
ifeq ($(shell uname -p),powerpc)
|
2017-04-06 20:20:25 +00:00
|
|
|
arch = ppc
|
2014-04-14 04:51:43 +00:00
|
|
|
endif
|
|
|
|
|
2017-04-06 20:20:25 +00:00
|
|
|
# Unix
|
|
|
|
ifneq (,$(findstring unix,$(platform)))
|
2016-09-07 04:00:43 +00:00
|
|
|
TARGET := $(TARGET_NAME)_libretro.so
|
2012-06-09 22:46:41 +00:00
|
|
|
fpic := -fPIC
|
2012-06-09 22:54:07 +00:00
|
|
|
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
|
2018-02-05 06:02:58 +00:00
|
|
|
ifneq (,$(findstring Haiku,$(shell uname -s)))
|
|
|
|
LDFLAGS += -lroot
|
|
|
|
CXXFLAGS += -fpermissive
|
|
|
|
else
|
2016-09-07 04:03:02 +00:00
|
|
|
LDFLAGS += -lrt
|
2018-02-05 06:02:58 +00:00
|
|
|
endif
|
2017-04-06 20:20:25 +00:00
|
|
|
|
|
|
|
# Raspberry Pi
|
|
|
|
ifneq (,$(findstring rpi,$(platform)))
|
|
|
|
FLAGS += -fomit-frame-pointer -ffast-math
|
|
|
|
ifneq (,$(findstring rpi1,$(platform)))
|
|
|
|
FLAGS += -DARM -marm -march=armv6j -mfpu=vfp -mfloat-abi=hard
|
|
|
|
else ifneq (,$(findstring rpi2,$(platform)))
|
|
|
|
FLAGS += -DARM -marm -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard
|
|
|
|
else ifneq (,$(findstring rpi3,$(platform)))
|
|
|
|
FLAGS += -DARM -marm -mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
# OS X
|
2012-06-09 22:46:41 +00:00
|
|
|
else ifeq ($(platform), osx)
|
2016-09-07 04:00:43 +00:00
|
|
|
TARGET := $(TARGET_NAME)_libretro.dylib
|
2014-04-14 04:51:43 +00:00
|
|
|
fpic := -fPIC
|
2012-06-09 22:46:41 +00:00
|
|
|
SHARED := -dynamiclib
|
2017-04-06 20:20:25 +00:00
|
|
|
ifeq ($(arch),ppc)
|
|
|
|
ENDIANNESS_DEFINES := -DMSB_FIRST -DBYTE_ORDER=BIG_ENDIAN
|
|
|
|
OLD_GCC := 1
|
|
|
|
endif
|
2014-10-23 07:50:37 +00:00
|
|
|
OSXVER = `sw_vers -productVersion | cut -d. -f 2`
|
|
|
|
OSX_LT_MAVERICKS = `(( $(OSXVER) <= 9)) && echo "YES"`
|
2015-08-01 21:51:51 +00:00
|
|
|
fpic += -mmacosx-version-min=10.1
|
2015-10-16 00:51:26 +00:00
|
|
|
|
|
|
|
# iOS
|
|
|
|
else ifneq (,$(findstring ios,$(platform)))
|
2016-09-07 04:00:43 +00:00
|
|
|
TARGET := $(TARGET_NAME)_libretro_ios.dylib
|
2013-03-17 23:08:03 +00:00
|
|
|
fpic := -fPIC
|
|
|
|
SHARED := -dynamiclib
|
2017-04-06 20:20:25 +00:00
|
|
|
ifeq ($(IOSSDK),)
|
|
|
|
IOSSDK := $(shell xcodebuild -version -sdk iphoneos Path)
|
|
|
|
endif
|
2015-10-16 00:51:26 +00:00
|
|
|
CC = cc -arch armv7 -isysroot $(IOSSDK)
|
|
|
|
CXX = c++ -arch armv7 -isysroot $(IOSSDK)
|
2017-04-06 20:20:25 +00:00
|
|
|
IPHONEMINVER :=
|
2017-09-06 18:04:28 +00:00
|
|
|
ifeq ($(platform),$(filter $(platform),ios9 ios-arm64))
|
2017-04-06 20:20:25 +00:00
|
|
|
IPHONEMINVER = -miphoneos-version-min=8.0
|
|
|
|
else
|
|
|
|
IPHONEMINVER = -miphoneos-version-min=5.0
|
|
|
|
endif
|
2014-05-20 21:20:33 +00:00
|
|
|
LDFLAGS += $(IPHONEMINVER)
|
|
|
|
FLAGS += $(IPHONEMINVER)
|
|
|
|
CC += $(IPHONEMINVER)
|
|
|
|
CXX += $(IPHONEMINVER)
|
2017-04-06 20:20:25 +00:00
|
|
|
|
|
|
|
# QNX
|
2013-03-25 06:43:00 +00:00
|
|
|
else ifeq ($(platform), qnx)
|
2016-09-07 04:00:43 +00:00
|
|
|
TARGET := $(TARGET_NAME)_libretro_$(platform).so
|
2013-03-25 06:43:00 +00:00
|
|
|
fpic := -fPIC
|
2013-03-29 15:40:42 +00:00
|
|
|
SHARED := -lcpp -lm -shared -Wl,--no-undefined -Wl,--version-script=link.T
|
2013-09-08 11:41:01 +00:00
|
|
|
CC = qcc -Vgcc_ntoarmv7le
|
|
|
|
CXX = QCC -Vgcc_ntoarmv7le_cpp
|
|
|
|
AR = QCC -Vgcc_ntoarmv7le
|
|
|
|
FLAGS += -D__BLACKBERRY_QNX__ -marm -mcpu=cortex-a9 -mfpu=neon -mfloat-abi=softfp
|
2017-04-06 20:20:25 +00:00
|
|
|
|
|
|
|
# PS3
|
|
|
|
else ifneq (,$(filter $(platform), ps3 sncps3 psl1ght))
|
2016-09-07 04:00:43 +00:00
|
|
|
TARGET := $(TARGET_NAME)_libretro_ps3.a
|
2013-09-08 11:41:01 +00:00
|
|
|
STATIC_LINKING = 1
|
2012-10-20 21:32:28 +00:00
|
|
|
ENDIANNESS_DEFINES := -DMSB_FIRST -DBYTE_ORDER=BIG_ENDIAN
|
2017-04-06 20:20:25 +00:00
|
|
|
|
|
|
|
# sncps3
|
|
|
|
ifneq (,$(findstring sncps3,$(platform)))
|
|
|
|
CC = $(CELL_SDK)/host-win32/sn/bin/ps3ppusnc.exe
|
|
|
|
CXX = $(CC)
|
|
|
|
AR = $(CELL_SDK)/host-win32/sn/bin/ps3snarl.exe
|
|
|
|
FLAGS += -DARCH_POWERPC_ALTIVEC
|
|
|
|
CXXFLAGS += -Xc+=exceptions
|
|
|
|
OLD_GCC := 1
|
|
|
|
NO_GCC := 1
|
|
|
|
|
|
|
|
# PS3
|
|
|
|
else ifneq (,$(findstring ps3,$(platform)))
|
|
|
|
CC = $(CELL_SDK)/host-win32/ppu/bin/ppu-lv2-gcc.exe
|
|
|
|
CXX = $(CELL_SDK)/host-win32/ppu/bin/ppu-lv2-g++.exe
|
|
|
|
AR = $(CELL_SDK)/host-win32/ppu/bin/ppu-lv2-ar.exe
|
|
|
|
FLAGS += -DARCH_POWERPC_ALTIVEC
|
|
|
|
OLD_GCC := 1
|
|
|
|
|
|
|
|
# Lightweight PS3 Homebrew SDK
|
|
|
|
else ifneq (,$(findstring psl1ght,$(platform)))
|
|
|
|
TARGET := $(TARGET_NAME)_libretro_$(platform).a
|
|
|
|
CC = $(PS3DEV)/ppu/bin/ppu-gcc$(EXE_EXT)
|
|
|
|
CXX = $(PS3DEV)/ppu/bin/ppu-g++$(EXE_EXT)
|
|
|
|
AR = $(PS3DEV)/ppu/bin/ppu-ar$(EXE_EXT)
|
|
|
|
endif
|
2015-08-31 21:42:44 +00:00
|
|
|
|
|
|
|
# PSP
|
2012-11-23 20:17:14 +00:00
|
|
|
else ifeq ($(platform), psp1)
|
2016-09-07 04:00:43 +00:00
|
|
|
TARGET := $(TARGET_NAME)_libretro_$(platform).a
|
2013-09-08 11:41:01 +00:00
|
|
|
CC = psp-gcc$(EXE_EXT)
|
|
|
|
CXX = psp-g++$(EXE_EXT)
|
|
|
|
AR = psp-ar$(EXE_EXT)
|
|
|
|
FLAGS += -DPSP -G0
|
|
|
|
STATIC_LINKING = 1
|
2014-06-22 20:07:16 +00:00
|
|
|
EXTRA_INCLUDES := -I$(shell psp-config --pspsdk-path)/include
|
2015-08-31 21:42:44 +00:00
|
|
|
|
|
|
|
# Vita
|
|
|
|
else ifeq ($(platform), vita)
|
2016-09-07 04:00:43 +00:00
|
|
|
TARGET := $(TARGET_NAME)_libretro_$(platform).a
|
2017-04-06 20:20:25 +00:00
|
|
|
CC = arm-vita-eabi-gcc$(EXE_EXT)
|
|
|
|
CXX = arm-vita-eabi-g++$(EXE_EXT)
|
|
|
|
AR = arm-vita-eabi-ar$(EXE_EXT)
|
2017-12-25 03:22:08 +00:00
|
|
|
FLAGS += -DVITA
|
2015-08-31 21:42:44 +00:00
|
|
|
STATIC_LINKING = 1
|
|
|
|
|
2017-04-06 20:20:25 +00:00
|
|
|
# Xbox 360
|
2012-10-20 21:32:28 +00:00
|
|
|
else ifeq ($(platform), xenon)
|
2016-09-07 04:00:43 +00:00
|
|
|
TARGET := $(TARGET_NAME)_libretro_xenon360.a
|
2012-10-20 21:32:28 +00:00
|
|
|
CC = xenon-gcc$(EXE_EXT)
|
|
|
|
CXX = xenon-g++$(EXE_EXT)
|
|
|
|
AR = xenon-ar$(EXE_EXT)
|
|
|
|
ENDIANNESS_DEFINES += -D__LIBXENON__ -m32 -D__ppc__ -DMSB_FIRST -DBYTE_ORDER=BIG_ENDIAN
|
2013-09-08 11:41:01 +00:00
|
|
|
STATIC_LINKING = 1
|
2016-11-07 01:33:36 +00:00
|
|
|
|
2018-09-29 21:30:23 +00:00
|
|
|
# Nintendo Switch (libnx)
|
|
|
|
else ifeq ($(platform), libnx)
|
|
|
|
include $(DEVKITPRO)/libnx/switch_rules
|
|
|
|
EXT=a
|
|
|
|
TARGET := $(TARGET_NAME)_libretro_$(platform).$(EXT)
|
|
|
|
DEFINES := -DSWITCH=1 -U__linux__ -U__linux -DRARCH_INTERNAL
|
|
|
|
CFLAGS := $(DEFINES) -g -O2 -fPIE -I$(LIBNX)/include/ -ffunction-sections -fdata-sections -ftls-model=local-exec -Wl,--allow-multiple-definition -specs=$(LIBNX)/switch.specs
|
|
|
|
CFLAGS += $(INCDIRS)
|
|
|
|
CFLAGS += $(INCLUDE) -D__SWITCH__
|
|
|
|
CXXFLAGS := $(ASFLAGS) $(CFLAGS) -fexceptions -fno-rtti -std=gnu++11
|
|
|
|
CFLAGS += -std=gnu11
|
|
|
|
STATIC_LINKING = 1
|
|
|
|
|
2017-04-06 20:20:25 +00:00
|
|
|
# Nintendo Game Cube / Wii / WiiU
|
|
|
|
else ifneq (,$(filter $(platform), ngc wii wiiu))
|
2016-09-07 04:00:43 +00:00
|
|
|
TARGET := $(TARGET_NAME)_libretro_$(platform).a
|
2012-10-20 21:32:28 +00:00
|
|
|
CC = $(DEVKITPPC)/bin/powerpc-eabi-gcc$(EXE_EXT)
|
|
|
|
CXX = $(DEVKITPPC)/bin/powerpc-eabi-g++$(EXE_EXT)
|
|
|
|
AR = $(DEVKITPPC)/bin/powerpc-eabi-ar$(EXE_EXT)
|
2017-04-06 20:20:25 +00:00
|
|
|
ENDIANNESS_DEFINES += -DGEKKO -mcpu=750 -meabi -mhard-float -DMSB_FIRST -DBYTE_ORDER=BIG_ENDIAN
|
2017-01-23 17:50:10 +00:00
|
|
|
FLAGS += -U__INT32_TYPE__ -U __UINT32_TYPE__ -D__INT32_TYPE__=int
|
2017-04-06 20:20:25 +00:00
|
|
|
EXTRA_INCLUDES := -I$(DEVKITPRO)/libogc/include
|
2013-09-08 11:41:01 +00:00
|
|
|
STATIC_LINKING = 1
|
2016-11-07 01:33:36 +00:00
|
|
|
|
2017-04-06 20:20:25 +00:00
|
|
|
# Nintendo WiiU
|
|
|
|
ifneq (,$(findstring wiiu,$(platform)))
|
|
|
|
ENDIANNESS_DEFINES += -DWIIU -DHW_RVL -mwup
|
2016-11-07 01:33:36 +00:00
|
|
|
|
2017-04-06 20:20:25 +00:00
|
|
|
# Nintendo Wii
|
|
|
|
else ifneq (,$(findstring wii,$(platform)))
|
|
|
|
ENDIANNESS_DEFINES += -DHW_RVL -mrvl
|
2016-11-07 01:33:36 +00:00
|
|
|
|
2017-04-06 20:20:25 +00:00
|
|
|
# Nintendo Game Cube
|
|
|
|
else ifneq (,$(findstring ngc,$(platform)))
|
|
|
|
ENDIANNESS_DEFINES += -DHW_DOL -mrvl
|
|
|
|
endif
|
2016-09-07 04:03:02 +00:00
|
|
|
|
2017-04-06 20:20:25 +00:00
|
|
|
# Emscripten
|
2016-09-07 04:03:02 +00:00
|
|
|
else ifeq ($(platform), emscripten)
|
|
|
|
TARGET := $(TARGET_NAME)_libretro_$(platform).bc
|
|
|
|
STATIC_LINKING = 1
|
|
|
|
|
2017-04-06 20:20:25 +00:00
|
|
|
# GCW Zero
|
2016-03-01 21:29:35 +00:00
|
|
|
else ifeq ($(platform), gcw0)
|
2016-09-07 04:00:43 +00:00
|
|
|
TARGET := $(TARGET_NAME)_libretro.so
|
2016-03-01 21:29:35 +00:00
|
|
|
CC = /opt/gcw0-toolchain/usr/bin/mipsel-linux-gcc
|
|
|
|
CXX = /opt/gcw0-toolchain/usr/bin/mipsel-linux-g++
|
|
|
|
AR = /opt/gcw0-toolchain/usr/bin/mipsel-linux-ar
|
|
|
|
fpic := -fPIC
|
|
|
|
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
|
2016-09-07 04:03:02 +00:00
|
|
|
LDFLAGS += -lrt
|
2016-03-01 21:29:35 +00:00
|
|
|
FLAGS += -ffast-math -march=mips32 -mtune=mips32r2 -mhard-float
|
2017-04-06 20:20:25 +00:00
|
|
|
|
2017-12-19 01:51:58 +00:00
|
|
|
# Windows MSVC 2017 all architectures
|
|
|
|
else ifneq (,$(findstring windows_msvc2017,$(platform)))
|
|
|
|
|
|
|
|
WINDOWS_VERSION=1
|
|
|
|
NO_GCC := 1
|
|
|
|
|
|
|
|
PlatformSuffix = $(subst windows_msvc2017_,,$(platform))
|
|
|
|
ifneq (,$(findstring desktop,$(PlatformSuffix)))
|
|
|
|
WinPartition = desktop
|
|
|
|
MSVC2017CompileFlags = -DWINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP -FS
|
|
|
|
LDFLAGS += -MANIFEST -LTCG:incremental -NXCOMPAT -DYNAMICBASE -DEBUG -OPT:REF -INCREMENTAL:NO -SUBSYSTEM:WINDOWS -MANIFESTUAC:"level='asInvoker' uiAccess='false'" -OPT:ICF -ERRORREPORT:PROMPT -NOLOGO -TLBID:1
|
|
|
|
LIBS += kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib
|
|
|
|
else ifneq (,$(findstring uwp,$(PlatformSuffix)))
|
|
|
|
WinPartition = uwp
|
2018-05-31 04:38:10 +00:00
|
|
|
MSVC2017CompileFlags = -DWINAPI_FAMILY=WINAPI_FAMILY_APP -D_WINDLL -D_UNICODE -DUNICODE -D__WRL_NO_DEFAULT_LIB__ -EHsc -FS
|
2017-12-19 01:51:58 +00:00
|
|
|
LDFLAGS += -APPCONTAINER -NXCOMPAT -DYNAMICBASE -MANIFEST:NO -LTCG -OPT:REF -SUBSYSTEM:CONSOLE -MANIFESTUAC:NO -OPT:ICF -ERRORREPORT:PROMPT -NOLOGO -TLBID:1 -DEBUG:FULL -WINMD:NO
|
|
|
|
LIBS += WindowsApp.lib
|
|
|
|
endif
|
|
|
|
|
|
|
|
CFLAGS += $(MSVC2017CompileFlags)
|
|
|
|
CXXFLAGS += $(MSVC2017CompileFlags)
|
|
|
|
|
|
|
|
TargetArchMoniker = $(subst $(WinPartition)_,,$(PlatformSuffix))
|
|
|
|
|
|
|
|
CC = cl.exe
|
|
|
|
CXX = cl.exe
|
|
|
|
LD = link.exe
|
|
|
|
|
|
|
|
reg_query = $(call filter_out2,$(subst $2,,$(shell reg query "$2" -v "$1" 2>nul)))
|
|
|
|
fix_path = $(subst $(SPACE),\ ,$(subst \,/,$1))
|
|
|
|
|
|
|
|
ProgramFiles86w := $(shell cmd /c "echo %PROGRAMFILES(x86)%")
|
|
|
|
ProgramFiles86 := $(shell cygpath "$(ProgramFiles86w)")
|
|
|
|
|
|
|
|
WindowsSdkDir ?= $(call reg_query,InstallationFolder,HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Microsoft SDKs\Windows\v10.0)
|
|
|
|
WindowsSdkDir ?= $(call reg_query,InstallationFolder,HKEY_CURRENT_USER\SOFTWARE\Wow6432Node\Microsoft\Microsoft SDKs\Windows\v10.0)
|
|
|
|
WindowsSdkDir ?= $(call reg_query,InstallationFolder,HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0)
|
|
|
|
WindowsSdkDir ?= $(call reg_query,InstallationFolder,HKEY_CURRENT_USER\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0)
|
|
|
|
WindowsSdkDir := $(WindowsSdkDir)
|
|
|
|
|
|
|
|
WindowsSDKVersion ?= $(firstword $(foreach folder,$(subst $(subst \,/,$(WindowsSdkDir)Include/),,$(wildcard $(call fix_path,$(WindowsSdkDir)Include\*))),$(if $(wildcard $(call fix_path,$(WindowsSdkDir)Include/$(folder)/um/Windows.h)),$(folder),)))$(BACKSLASH)
|
|
|
|
WindowsSDKVersion := $(WindowsSDKVersion)
|
|
|
|
|
|
|
|
VsInstallBuildTools = $(ProgramFiles86)/Microsoft Visual Studio/2017/BuildTools
|
|
|
|
VsInstallEnterprise = $(ProgramFiles86)/Microsoft Visual Studio/2017/Enterprise
|
|
|
|
VsInstallProfessional = $(ProgramFiles86)/Microsoft Visual Studio/2017/Professional
|
|
|
|
VsInstallCommunity = $(ProgramFiles86)/Microsoft Visual Studio/2017/Community
|
|
|
|
|
|
|
|
VsInstallRoot ?= $(shell if [ -d "$(VsInstallBuildTools)" ]; then echo "$(VsInstallBuildTools)"; fi)
|
|
|
|
ifeq ($(VsInstallRoot), )
|
|
|
|
VsInstallRoot = $(shell if [ -d "$(VsInstallEnterprise)" ]; then echo "$(VsInstallEnterprise)"; fi)
|
|
|
|
endif
|
|
|
|
ifeq ($(VsInstallRoot), )
|
|
|
|
VsInstallRoot = $(shell if [ -d "$(VsInstallProfessional)" ]; then echo "$(VsInstallProfessional)"; fi)
|
|
|
|
endif
|
|
|
|
ifeq ($(VsInstallRoot), )
|
|
|
|
VsInstallRoot = $(shell if [ -d "$(VsInstallCommunity)" ]; then echo "$(VsInstallCommunity)"; fi)
|
|
|
|
endif
|
|
|
|
VsInstallRoot := $(VsInstallRoot)
|
|
|
|
|
|
|
|
VcCompilerToolsVer := $(shell cat "$(VsInstallRoot)/VC/Auxiliary/Build/Microsoft.VCToolsVersion.default.txt" | grep -o '[0-9\.]*')
|
|
|
|
VcCompilerToolsDir := $(VsInstallRoot)/VC/Tools/MSVC/$(VcCompilerToolsVer)
|
|
|
|
|
|
|
|
WindowsSDKSharedIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\$(WindowsSDKVersion)\shared")
|
|
|
|
WindowsSDKUCRTIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\$(WindowsSDKVersion)\ucrt")
|
|
|
|
WindowsSDKUMIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\$(WindowsSDKVersion)\um")
|
|
|
|
WindowsSDKUCRTLibDir := $(shell cygpath -w "$(WindowsSdkDir)\Lib\$(WindowsSDKVersion)\ucrt\$(TargetArchMoniker)")
|
|
|
|
WindowsSDKUMLibDir := $(shell cygpath -w "$(WindowsSdkDir)\Lib\$(WindowsSDKVersion)\um\$(TargetArchMoniker)")
|
|
|
|
|
|
|
|
# For some reason the HostX86 compiler doesn't like compiling for x64
|
|
|
|
# ("no such file" opening a shared library), and vice-versa.
|
|
|
|
# Work around it for now by using the strictly x86 compiler for x86, and x64 for x64.
|
|
|
|
# NOTE: What about ARM?
|
|
|
|
ifneq (,$(findstring x64,$(TargetArchMoniker)))
|
|
|
|
VCCompilerToolsBinDir := $(VcCompilerToolsDir)\bin\HostX64
|
|
|
|
else
|
|
|
|
VCCompilerToolsBinDir := $(VcCompilerToolsDir)\bin\HostX86
|
|
|
|
endif
|
|
|
|
|
|
|
|
PATH := $(shell IFS=$$'\n'; cygpath "$(VCCompilerToolsBinDir)/$(TargetArchMoniker)"):$(PATH)
|
|
|
|
PATH := $(PATH):$(shell IFS=$$'\n'; cygpath "$(VsInstallRoot)/Common7/IDE")
|
|
|
|
INCLUDE := $(shell IFS=$$'\n'; cygpath -w "$(VcCompilerToolsDir)/include")
|
|
|
|
LIB := $(shell IFS=$$'\n'; cygpath -w "$(VcCompilerToolsDir)/lib/$(TargetArchMoniker)")
|
2018-05-31 04:38:10 +00:00
|
|
|
ifneq (,$(findstring uwp,$(PlatformSuffix)))
|
|
|
|
LIB := $(shell IFS=$$'\n'; cygpath -w "$(LIB)/store")
|
|
|
|
endif
|
2017-12-19 01:51:58 +00:00
|
|
|
|
|
|
|
export INCLUDE := $(INCLUDE);$(WindowsSDKSharedIncludeDir);$(WindowsSDKUCRTIncludeDir);$(WindowsSDKUMIncludeDir)
|
|
|
|
export LIB := $(LIB);$(WindowsSDKUCRTLibDir);$(WindowsSDKUMLibDir)
|
|
|
|
TARGET := $(TARGET_NAME)_libretro.dll
|
|
|
|
PSS_STYLE :=2
|
|
|
|
LDFLAGS += -DLL
|
|
|
|
|
2017-07-06 16:01:53 +00:00
|
|
|
# Windows MSVC 2010 x64
|
|
|
|
else ifeq ($(platform), windows_msvc2010_x64)
|
|
|
|
CC = cl.exe
|
|
|
|
CXX = cl.exe
|
|
|
|
|
|
|
|
NO_GCC := 1
|
|
|
|
PATH := $(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../../VC/bin/amd64"):$(PATH)
|
|
|
|
PATH := $(PATH):$(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../IDE")
|
|
|
|
LIB := $(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../../VC/lib/amd64")
|
|
|
|
INCLUDE := $(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../../VC/include")
|
|
|
|
|
|
|
|
WindowsSdkDir := $(shell reg query "HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.0A" -v "InstallationFolder" | grep -o '[A-Z]:\\.*')lib/x64
|
|
|
|
WindowsSdkDir ?= $(shell reg query "HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.1A" -v "InstallationFolder" | grep -o '[A-Z]:\\.*')lib/x64
|
|
|
|
|
|
|
|
WindowsSdkDirInc := $(shell reg query "HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.0A" -v "InstallationFolder" | grep -o '[A-Z]:\\.*')Include
|
|
|
|
WindowsSdkDirInc ?= $(shell reg query "HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.1A" -v "InstallationFolder" | grep -o '[A-Z]:\\.*')Include
|
|
|
|
|
|
|
|
|
|
|
|
INCFLAGS_PLATFORM = -I"$(WindowsSdkDirInc)"
|
|
|
|
export INCLUDE := $(INCLUDE)
|
|
|
|
export LIB := $(LIB);$(WindowsSdkDir)
|
|
|
|
TARGET := $(TARGET_NAME)_libretro.dll
|
|
|
|
PSS_STYLE :=2
|
|
|
|
LDFLAGS += -DLL
|
2017-08-08 02:32:07 +00:00
|
|
|
WINDOWS_VERSION=1
|
2017-07-06 16:01:53 +00:00
|
|
|
# Windows MSVC 2010 x86
|
|
|
|
else ifeq ($(platform), windows_msvc2010_x86)
|
|
|
|
CC = cl.exe
|
|
|
|
CXX = cl.exe
|
|
|
|
|
|
|
|
NO_GCC := 1
|
|
|
|
PATH := $(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../../VC/bin"):$(PATH)
|
|
|
|
PATH := $(PATH):$(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../IDE")
|
|
|
|
LIB := $(shell IFS=$$'\n'; cygpath -w "$(VS100COMNTOOLS)../../VC/lib")
|
|
|
|
INCLUDE := $(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../../VC/include")
|
|
|
|
|
|
|
|
WindowsSdkDir := $(shell reg query "HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.0A" -v "InstallationFolder" | grep -o '[A-Z]:\\.*')lib
|
|
|
|
WindowsSdkDir ?= $(shell reg query "HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.1A" -v "InstallationFolder" | grep -o '[A-Z]:\\.*')lib
|
|
|
|
|
|
|
|
WindowsSdkDirInc := $(shell reg query "HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.0A" -v "InstallationFolder" | grep -o '[A-Z]:\\.*')Include
|
|
|
|
WindowsSdkDirInc ?= $(shell reg query "HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.1A" -v "InstallationFolder" | grep -o '[A-Z]:\\.*')Include
|
|
|
|
|
|
|
|
|
|
|
|
INCFLAGS_PLATFORM = -I"$(WindowsSdkDirInc)"
|
|
|
|
export INCLUDE := $(INCLUDE)
|
|
|
|
export LIB := $(LIB);$(WindowsSdkDir)
|
|
|
|
TARGET := $(TARGET_NAME)_libretro.dll
|
|
|
|
PSS_STYLE :=2
|
|
|
|
LDFLAGS += -DLL
|
2017-08-08 02:32:07 +00:00
|
|
|
WINDOWS_VERSION=1
|
2017-07-06 16:01:53 +00:00
|
|
|
|
2017-08-05 12:18:39 +00:00
|
|
|
# Windows MSVC 2005 x86
|
|
|
|
else ifeq ($(platform), windows_msvc2005_x86)
|
|
|
|
CC = cl.exe
|
|
|
|
CXX = cl.exe
|
|
|
|
|
|
|
|
PATH := $(shell IFS=$$'\n'; cygpath "$(VS80COMNTOOLS)../../VC/bin"):$(PATH)
|
|
|
|
PATH := $(PATH):$(shell IFS=$$'\n'; cygpath "$(VS80COMNTOOLS)../IDE")
|
|
|
|
INCLUDE := $(shell IFS=$$'\n'; cygpath "$(VS80COMNTOOLS)../../VC/include")
|
|
|
|
LIB := $(shell IFS=$$'\n'; cygpath -w "$(VS80COMNTOOLS)../../VC/lib")
|
|
|
|
BIN := $(shell IFS=$$'\n'; cygpath "$(VS80COMNTOOLS)../../VC/bin")
|
|
|
|
|
|
|
|
WindowsSdkDir := $(INETSDK)
|
|
|
|
|
|
|
|
export INCLUDE := $(INCLUDE);$(INETSDK)/Include;libretro-common/include/compat/msvc
|
|
|
|
export LIB := $(LIB);$(WindowsSdkDir);$(INETSDK)/Lib
|
|
|
|
TARGET := $(TARGET_NAME)_libretro.dll
|
|
|
|
PSS_STYLE :=2
|
|
|
|
LDFLAGS += -DLL
|
|
|
|
CFLAGS += -D_CRT_SECURE_NO_DEPRECATE
|
|
|
|
LIBS =
|
2017-08-08 02:32:07 +00:00
|
|
|
WINDOWS_VERSION=1
|
2017-08-05 12:18:39 +00:00
|
|
|
|
2018-02-19 10:17:29 +00:00
|
|
|
# Windows MSVC 2003 Xbox 1
|
|
|
|
else ifeq ($(platform), xbox1_msvc2003)
|
|
|
|
TARGET := $(TARGET_NAME)_libretro_xdk1.lib
|
|
|
|
CC = CL.exe
|
|
|
|
CXX = CL.exe
|
|
|
|
LD = lib.exe
|
|
|
|
|
|
|
|
export INCLUDE := $(XDK)/xbox/include
|
|
|
|
export LIB := $(XDK)/xbox/lib
|
|
|
|
PATH := $(call unixcygpath,$(XDK)/xbox/bin/vc71):$(PATH)
|
|
|
|
PSS_STYLE :=2
|
|
|
|
CFLAGS += -D_XBOX -D_XBOX1
|
|
|
|
CXXFLAGS += -D_XBOX -D_XBOX1
|
|
|
|
STATIC_LINKING=1
|
2018-02-20 20:54:57 +00:00
|
|
|
HAVE_CHD = 0
|
2018-02-19 10:17:29 +00:00
|
|
|
|
2017-12-25 03:29:57 +00:00
|
|
|
# Windows MSVC 2003 x86
|
|
|
|
else ifeq ($(platform), windows_msvc2003_x86)
|
|
|
|
CC = cl.exe
|
|
|
|
CXX = cl.exe
|
|
|
|
|
|
|
|
PATH := $(shell IFS=$$'\n'; cygpath "$(VS71COMNTOOLS)../../Vc7/bin"):$(PATH)
|
|
|
|
PATH := $(PATH):$(shell IFS=$$'\n'; cygpath "$(VS71COMNTOOLS)../IDE")
|
|
|
|
INCLUDE := $(shell IFS=$$'\n'; cygpath "$(VS71COMNTOOLS)../../Vc7/include")
|
|
|
|
LIB := $(shell IFS=$$'\n'; cygpath -w "$(VS71COMNTOOLS)../../Vc7/lib")
|
|
|
|
BIN := $(shell IFS=$$'\n'; cygpath "$(VS71COMNTOOLS)../../Vc7/bin")
|
|
|
|
|
|
|
|
WindowsSdkDir := $(INETSDK)
|
|
|
|
|
|
|
|
export INCLUDE := $(INCLUDE);$(INETSDK)/Include;libretro-common/include/compat/msvc
|
|
|
|
export LIB := $(LIB);$(WindowsSdkDir);$(INETSDK)/Lib
|
|
|
|
TARGET := $(TARGET_NAME)_libretro.dll
|
|
|
|
PSS_STYLE :=2
|
|
|
|
LDFLAGS += -DLL
|
|
|
|
CFLAGS += -D_CRT_SECURE_NO_DEPRECATE
|
2017-12-25 03:31:05 +00:00
|
|
|
WINDOWS_VERSION=1
|
2017-12-25 03:29:57 +00:00
|
|
|
|
2017-04-06 20:20:25 +00:00
|
|
|
# Windows
|
2012-06-09 22:46:41 +00:00
|
|
|
else
|
2016-09-07 04:00:43 +00:00
|
|
|
TARGET := $(TARGET_NAME)_libretro.dll
|
2012-11-12 21:25:30 +00:00
|
|
|
CC = gcc
|
|
|
|
CXX = g++
|
2012-06-09 22:54:07 +00:00
|
|
|
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
|
2012-06-09 22:46:41 +00:00
|
|
|
LDFLAGS += -static-libgcc -static-libstdc++ -lwinmm
|
2017-08-08 02:32:07 +00:00
|
|
|
WINDOWS_VERSION=1
|
2017-04-06 20:20:25 +00:00
|
|
|
|
2012-06-09 22:46:41 +00:00
|
|
|
endif
|
|
|
|
|
2015-07-26 15:25:48 +00:00
|
|
|
include Makefile.common
|
2012-10-22 15:00:42 +00:00
|
|
|
|
2017-07-06 16:01:53 +00:00
|
|
|
ifneq (,$(findstring msvc,$(platform)))
|
|
|
|
WARNINGS :=
|
|
|
|
else
|
2012-11-15 17:35:26 +00:00
|
|
|
WARNINGS := -Wall \
|
|
|
|
-Wno-sign-compare \
|
|
|
|
-Wno-unused-variable \
|
|
|
|
-Wno-unused-function \
|
|
|
|
-Wno-uninitialized \
|
|
|
|
$(NEW_GCC_WARNING_FLAGS) \
|
|
|
|
-Wno-strict-aliasing
|
2013-04-30 22:03:33 +00:00
|
|
|
EXTRA_GCC_FLAGS := -funroll-loops
|
2017-07-06 16:01:53 +00:00
|
|
|
endif
|
2012-11-15 17:35:26 +00:00
|
|
|
|
|
|
|
ifeq ($(NO_GCC),1)
|
2017-04-06 20:20:25 +00:00
|
|
|
EXTRA_GCC_FLAGS :=
|
|
|
|
WARNINGS :=
|
2012-11-15 17:35:26 +00:00
|
|
|
endif
|
|
|
|
|
2015-07-26 15:25:48 +00:00
|
|
|
OBJECTS := $(SOURCES_CXX:.cpp=.o) $(SOURCES_C:.c=.o)
|
2012-06-03 15:48:14 +00:00
|
|
|
|
|
|
|
all: $(TARGET)
|
|
|
|
|
2012-06-15 23:00:17 +00:00
|
|
|
ifeq ($(DEBUG),0)
|
2017-07-06 16:01:53 +00:00
|
|
|
FLAGS += -O2 -DNDEBUG $(EXTRA_GCC_FLAGS)
|
2012-06-15 23:00:17 +00:00
|
|
|
else
|
2017-07-06 16:01:53 +00:00
|
|
|
FLAGS += -O0 -g
|
2012-06-15 23:00:17 +00:00
|
|
|
endif
|
|
|
|
|
2012-11-15 17:35:26 +00:00
|
|
|
LDFLAGS += $(fpic) $(SHARED)
|
|
|
|
FLAGS += $(fpic) $(NEW_GCC_FLAGS)
|
2017-07-06 16:01:53 +00:00
|
|
|
FLAGS += $(INCFLAGS) $(INCFLAGS_PLATFORM)
|
2012-11-15 17:35:26 +00:00
|
|
|
|
2017-04-06 20:20:25 +00:00
|
|
|
FLAGS += $(ENDIANNESS_DEFINES) -DSIZEOF_DOUBLE=8 $(WARNINGS) -DPACKAGE=\"mednafen\" -DMEDNAFEN_VERSION_NUMERIC=931 -DPSS_STYLE=1 -DMPC_FIXED_POINT $(CORE_DEFINE) -DSTDC_HEADERS -D__STDC_LIMIT_MACROS -D__LIBRETRO__ -D_LOW_ACCURACY_ $(EXTRA_INCLUDES) $(SOUND_DEFINE)
|
2012-06-03 15:48:14 +00:00
|
|
|
|
2017-07-06 16:01:53 +00:00
|
|
|
ifneq (,$(findstring msvc,$(platform)))
|
|
|
|
FLAGS += -DINLINE="_inline"
|
|
|
|
else
|
|
|
|
FLAGS += -DINLINE="inline"
|
|
|
|
endif
|
|
|
|
|
2012-10-20 20:35:08 +00:00
|
|
|
ifeq ($(CACHE_CD), 1)
|
|
|
|
FLAGS += -D__LIBRETRO_CACHE_CD__
|
|
|
|
endif
|
|
|
|
|
2012-10-20 23:47:02 +00:00
|
|
|
ifeq ($(NEED_BPP), 16)
|
|
|
|
FLAGS += -DWANT_16BPP
|
|
|
|
endif
|
|
|
|
|
2012-10-22 12:34:14 +00:00
|
|
|
ifeq ($(FRONTEND_SUPPORTS_RGB565), 1)
|
|
|
|
FLAGS += -DFRONTEND_SUPPORTS_RGB565
|
|
|
|
endif
|
|
|
|
|
2014-04-20 21:05:37 +00:00
|
|
|
ifeq ($(WANT_NEW_API), 1)
|
|
|
|
FLAGS += -DWANT_NEW_API
|
|
|
|
endif
|
2012-10-22 15:00:42 +00:00
|
|
|
|
2012-06-03 15:48:14 +00:00
|
|
|
CXXFLAGS += $(FLAGS)
|
2012-11-15 17:35:26 +00:00
|
|
|
CFLAGS += $(FLAGS)
|
2012-06-03 15:48:14 +00:00
|
|
|
|
2018-01-17 02:00:29 +00:00
|
|
|
OBJOUT = -o
|
2017-07-06 16:01:53 +00:00
|
|
|
LINKOUT = -o
|
|
|
|
|
|
|
|
ifneq (,$(findstring msvc,$(platform)))
|
|
|
|
OBJOUT = -Fo
|
|
|
|
LINKOUT = -out:
|
2018-05-31 05:43:20 +00:00
|
|
|
ifeq ($(STATIC_LINKING),1)
|
|
|
|
LD ?= lib.exe
|
|
|
|
STATIC_LINKING=0
|
|
|
|
|
|
|
|
ifeq ($(DEBUG), 1)
|
|
|
|
CFLAGS += -MTd
|
|
|
|
CXXFLAGS += -MTd
|
|
|
|
else
|
|
|
|
CFLAGS += -MT
|
|
|
|
CXXFLAGS += -MT
|
|
|
|
endif
|
|
|
|
else
|
2017-07-06 16:01:53 +00:00
|
|
|
LD = link.exe
|
2018-05-31 05:43:20 +00:00
|
|
|
|
|
|
|
ifeq ($(DEBUG), 1)
|
|
|
|
CFLAGS += -MDd
|
|
|
|
CXXFLAGS += -MDd
|
|
|
|
else
|
|
|
|
CFLAGS += -MD
|
|
|
|
CXXFLAGS += -MD
|
|
|
|
endif
|
|
|
|
endif
|
2017-07-06 16:01:53 +00:00
|
|
|
else
|
|
|
|
LD = $(CXX)
|
|
|
|
endif
|
|
|
|
|
2012-06-03 15:48:14 +00:00
|
|
|
$(TARGET): $(OBJECTS)
|
2018-01-17 02:00:29 +00:00
|
|
|
ifeq ($(platform), emscripten)
|
|
|
|
$(CXX) $(CXXFLAGS) $(OBJOUT)$@ $^
|
|
|
|
else ifeq ($(STATIC_LINKING), 1)
|
2012-11-20 16:29:55 +00:00
|
|
|
$(AR) rcs $@ $(OBJECTS)
|
|
|
|
else
|
2018-01-05 08:52:19 +00:00
|
|
|
$(LD) $(LINKOUT)$@ $^ $(LDFLAGS) $(LIBS)
|
2012-11-20 16:29:55 +00:00
|
|
|
endif
|
2012-06-03 15:48:14 +00:00
|
|
|
|
|
|
|
%.o: %.cpp
|
2017-07-06 16:01:53 +00:00
|
|
|
$(CXX) -c $(OBJOUT)$@ $< $(CPPFLAGS) $(CXXFLAGS)
|
2012-06-03 15:48:14 +00:00
|
|
|
|
|
|
|
%.o: %.c
|
2017-07-06 16:01:53 +00:00
|
|
|
$(CC) -c $(OBJOUT)$@ $< $(CPPFLAGS) $(CFLAGS)
|
2012-06-03 15:48:14 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f $(TARGET) $(OBJECTS)
|
|
|
|
|
2017-02-24 13:14:37 +00:00
|
|
|
install:
|
|
|
|
install -D -m 755 $(TARGET) $(DESTDIR)$(libdir)/$(LIBRETRO_INSTALL_DIR)/$(TARGET)
|
|
|
|
|
|
|
|
uninstall:
|
|
|
|
rm $(DESTDIR)$(libdir)/$(LIBRETRO_INSTALL_DIR)/$(TARGET)
|
|
|
|
|
2012-06-03 15:48:14 +00:00
|
|
|
.PHONY: clean
|