303 lines
9.7 KiB
Makefile
303 lines
9.7 KiB
Makefile
TILED_RENDERING=0
|
|
STATIC_LINKING=0
|
|
|
|
SPACE :=
|
|
SPACE := $(SPACE) $(SPACE)
|
|
BACKSLASH :=
|
|
BACKSLASH := \$(BACKSLASH)
|
|
filter_out1 = $(filter-out $(firstword $1),$1)
|
|
filter_out2 = $(call filter_out1,$(call filter_out1,$1))
|
|
|
|
ifeq ($(platform),)
|
|
platform = unix
|
|
ifeq ($(shell uname -a),)
|
|
platform = win
|
|
else ifneq ($(findstring MINGW,$(shell uname -a)),)
|
|
platform = win
|
|
else ifneq ($(findstring win,$(shell uname -a)),)
|
|
platform = win
|
|
else ifneq ($(findstring Darwin,$(shell uname -a)),)
|
|
platform = osx
|
|
arch = intel
|
|
ifeq ($(shell uname -a),)
|
|
arch = ppc
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
TARGET_NAME = vbam
|
|
GIT_VERSION := " $(shell git rev-parse --short HEAD || echo unknown)"
|
|
ifneq ($(GIT_VERSION)," unknown")
|
|
CXXFLAGS += -DGIT_VERSION=\"$(GIT_VERSION)\"
|
|
endif
|
|
|
|
ifeq ($(platform), unix)
|
|
TARGET := $(TARGET_NAME)_libretro.so
|
|
fpic := -fPIC
|
|
SHARED := -shared
|
|
TILED_RENDERING = 1
|
|
else ifeq ($(platform), osx)
|
|
TARGET := $(TARGET_NAME)_libretro.dylib
|
|
fpic := -fPIC
|
|
SHARED := -dynamiclib
|
|
arch = intel
|
|
ifeq ($(shell uname -a),)
|
|
arch = ppc
|
|
endif
|
|
|
|
ifneq ($(arch),ppc)
|
|
SHARED += -DLSB_FIRST
|
|
endif
|
|
OSXVER = `sw_vers -productVersion | cut -d. -f 2`
|
|
OSX_LT_MAVERICKS = `(( $(OSXVER) <= 9)) && echo "YES"`
|
|
ifeq ($(OSX_LT_MAVERICKS),"YES")
|
|
fpic += -mmacosx-version-min=10.5
|
|
endif
|
|
|
|
# iOS
|
|
else ifneq (,$(findstring ios,$(platform)))
|
|
TARGET := $(TARGET_NAME)_libretro_ios.dylib
|
|
fpic := -fPIC
|
|
SHARED := -dynamiclib -DLSB_FIRST
|
|
|
|
ifeq ($(IOSSDK),)
|
|
IOSSDK := $(shell xcodebuild -version -sdk iphoneos Path)
|
|
endif
|
|
|
|
CC = clang -arch armv7 -isysroot $(IOSSDK)
|
|
CXX = clang++ -arch armv7 -isysroot $(IOSSDK)
|
|
ifeq ($(platform),ios9)
|
|
CC += -miphoneos-version-min=8.0
|
|
CXX += -miphoneos-version-min=8.0
|
|
SHARED += -miphoneos-version-min=8.0
|
|
else
|
|
CC += -miphoneos-version-min=5.0
|
|
CXX += -miphoneos-version-min=5.0
|
|
SHARED += -miphoneos-version-min=5.0
|
|
endif
|
|
TILED_RENDERING = 1
|
|
else ifeq ($(platform), theos_ios)
|
|
DEPLOYMENT_IOSVERSION = 5.0
|
|
TARGET = iphone:latest:$(DEPLOYMENT_IOSVERSION)
|
|
ARCHS = armv7 armv7s
|
|
TARGET_IPHONEOS_DEPLOYMENT_VERSION=$(DEPLOYMENT_IOSVERSION)
|
|
THEOS_BUILD_DIR := objs
|
|
include $(THEOS)/makefiles/common.mk
|
|
|
|
LIBRARY_NAME = $(TARGET_NAME)_libretro_ios
|
|
|
|
ENDIANNESS_DEFINES = -DLSB_FIRST
|
|
TILED_RENDERING=1
|
|
else ifeq ($(platform), qnx)
|
|
TARGET := $(TARGET_NAME)_libretro_qnx.so
|
|
fpic := -fPIC
|
|
SHARED := -shared
|
|
TILED_RENDERING = 1
|
|
CC = qcc -Vgcc_ntoarmv7le
|
|
CXX = QCC -Vgcc_ntoarmv7le_cpp
|
|
AR = QCC -Vgcc_ntoarmv7le
|
|
else ifeq ($(platform), vita)
|
|
TARGET := $(TARGET_NAME)_libretro_vita.a
|
|
CC = arm-vita-eabi-gcc
|
|
CXX = arm-vita-eabi-g++
|
|
AR = arm-vita-eabi-ar
|
|
__FLAGS := -marm -mtune=cortex-a9 -mcpu=cortex-a9 -mfloat-abi=hard -mword-relocations
|
|
__FLAGS += -fno-optimize-sibling-calls -fno-strict-aliasing -fno-partial-inlining -fno-tree-vrp
|
|
__FLAGS += -ffast-math -fsingle-precision-constant -funroll-loops -ftracer
|
|
__FLAGS += -DVITA -I../vita -Wno-attributes
|
|
|
|
CFLAGS += $(__FLAGS)
|
|
CXXFLAGS += $(__FLAGS)
|
|
CXXFLAGS += -fno-exceptions -fno-rtti
|
|
STATIC_LINKING=1
|
|
TILED_RENDERING=1
|
|
USE_CHEATS=0
|
|
USE_TWEAKS=1
|
|
USE_THREADED_RENDERER=1
|
|
USE_MOTION_SENSOR=1
|
|
HAVE_NEON=1
|
|
|
|
# Windows MSVC 2017 all architectures
|
|
else ifneq (,$(findstring windows_msvc2017,$(platform)))
|
|
|
|
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
|
|
MSVC2017CompileFlags = -DWINAPI_FAMILY=WINAPI_FAMILY_APP -D_WINDLL -D_UNICODE -DUNICODE -D__WRL_NO_DEFAULT_LIB__ -EHsc -FS
|
|
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)")
|
|
ifneq (,$(findstring uwp,$(PlatformSuffix)))
|
|
LIB := $(shell IFS=$$'\n'; cygpath -w "$(LIB)/store")
|
|
endif
|
|
|
|
export INCLUDE := $(INCLUDE);$(WindowsSDKSharedIncludeDir);$(WindowsSDKUCRTIncludeDir);$(WindowsSDKUMIncludeDir)
|
|
export LIB := $(LIB);$(WindowsSDKUCRTLibDir);$(WindowsSDKUMLibDir)
|
|
TARGET := $(TARGET_NAME)_libretro.dll
|
|
PSS_STYLE :=2
|
|
LDFLAGS += -DLL
|
|
|
|
else
|
|
TARGET := $(TARGET_NAME)_libretro.dll
|
|
LDFLAGS += -Wl,-no-undefined -Wl,--version-script=link.T
|
|
CC = gcc
|
|
CXX = g++
|
|
SHARED := -shared -static-libgcc -static-libstdc++
|
|
endif
|
|
|
|
ifeq ($(TILED_RENDERING), 1)
|
|
VBA_DEFINES += -DTILED_RENDERING
|
|
endif
|
|
|
|
CORE_DIR := ..
|
|
|
|
include Makefile.common
|
|
|
|
OBJS := $(SOURCES_CXX:.cpp=.o)
|
|
|
|
VBA_DEFINES += -D__LIBRETRO__ -DFINAL_VERSION -DC_CORE -DUSE_GBA_ONLY -DNO_LINK
|
|
VBA_DEFINES += -DFRONTEND_SUPPORTS_RGB565
|
|
|
|
ifeq ($(DEBUG), 1)
|
|
CFLAGS += -g
|
|
CXXFLAGS += -g
|
|
else
|
|
CFLAGS += -O2 -DNDEBUG
|
|
CXXFLAGS += -O2 -DNDEBUG
|
|
endif
|
|
|
|
CFLAGS += $(fpic) $(VBA_DEFINES)
|
|
CXXFLAGS += $(fpic) $(VBA_DEFINES)
|
|
|
|
OBJOUT = -o
|
|
LINKOUT = -o
|
|
|
|
ifneq (,$(findstring msvc,$(platform)))
|
|
OBJOUT = -Fo
|
|
LINKOUT = -out:
|
|
ifeq ($(STATIC_LINKING),1)
|
|
LD ?= lib.exe
|
|
STATIC_LINKING=0
|
|
|
|
ifeq ($(DEBUG), 1)
|
|
CFLAGS += -MTd
|
|
CXXFLAGS += -MTd
|
|
else
|
|
CFLAGS += -MT
|
|
CXXFLAGS += -MT
|
|
endif
|
|
else
|
|
LD = link.exe
|
|
|
|
ifeq ($(DEBUG), 1)
|
|
CFLAGS += -MDd
|
|
CXXFLAGS += -MDd
|
|
else
|
|
CFLAGS += -MD
|
|
CXXFLAGS += -MD
|
|
endif
|
|
endif
|
|
else
|
|
LD = $(CXX)
|
|
endif
|
|
|
|
%.o: %.cpp
|
|
$(CXX) -c $(OBJOUT)$@ $< $(CXXFLAGS) $(INCFLAGS)
|
|
|
|
%.o: %.c
|
|
$(CC) -c $(OBJOUT)$@ $< $(CFLAGS) $(INCFLAGS)
|
|
|
|
ifeq ($(platform), theos_ios)
|
|
COMMON_FLAGS := -DIOS $(COMMON_DEFINES) $(INCFLAGS) -I$(THEOS_INCLUDE_PATH) -Wno-error
|
|
$(LIBRARY_NAME)_CFLAGS += $(CFLAGS) $(COMMON_FLAGS)
|
|
$(LIBRARY_NAME)_CXXFLAGS += $(CXXFLAGS) $(COMMON_FLAGS)
|
|
${LIBRARY_NAME}_FILES = $(SOURCES_CXX) $(SOURCES_C)
|
|
include $(THEOS_MAKE_PATH)/library.mk
|
|
else
|
|
all: $(TARGET)
|
|
|
|
$(TARGET): $(OBJS)
|
|
ifeq ($(STATIC_LINKING), 1)
|
|
$(AR) rcs $@ $(OBJS)
|
|
else
|
|
$(LD) $(LINKOUT)$@ $(SHARED) $(OBJS) $(LDFLAGS) $(LIBS)
|
|
endif
|
|
|
|
clean:
|
|
rm -f $(OBJS)
|
|
rm -f $(TARGET)
|
|
rm -f *.a
|
|
|
|
.PHONY: clean
|
|
endif
|