mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 16:39:43 +00:00
173 lines
4.3 KiB
Makefile
173 lines
4.3 KiB
Makefile
ifeq ($(platform),)
|
|
platform = unix
|
|
ifeq ($(shell uname -a),)
|
|
platform = win
|
|
else ifneq ($(findstring MINGW,$(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 win,$(shell uname -a)),)
|
|
platform = win
|
|
endif
|
|
endif
|
|
|
|
# system platform
|
|
system_platform = unix
|
|
ifeq ($(shell uname -a),)
|
|
EXE_EXT = .exe
|
|
system_platform = win
|
|
else ifneq ($(findstring Darwin,$(shell uname -a)),)
|
|
system_platform = osx
|
|
arch = intel
|
|
ifeq ($(shell uname -p),powerpc)
|
|
arch = ppc
|
|
endif
|
|
else ifneq ($(findstring MINGW,$(shell uname -a)),)
|
|
system_platform = win
|
|
endif
|
|
|
|
TARGET_NAME = testgl
|
|
|
|
ifeq ($(platform), unix)
|
|
TARGET := $(TARGET_NAME)_libretro.so
|
|
fpic := -fPIC
|
|
SHARED := -shared -Wl,--version-script=link.T -Wl,--no-undefined
|
|
GL_LIB := -lGL
|
|
else ifneq (,$(findstring osx,$(platform)))
|
|
TARGET := $(TARGET_NAME)_libretro.dylib
|
|
fpic := -fPIC
|
|
SHARED := -dynamiclib
|
|
GL_LIB := -framework OpenGL
|
|
CFLAGS += -DOSX
|
|
ifeq ($(arch),ppc)
|
|
CFLAGS += -D__ppc__ -DOSX_PPC
|
|
endif
|
|
OSXVER = `sw_vers -productVersion | cut -d. -f 2`
|
|
OSX_LT_MAVERICKS = `(( $(OSXVER) <= 9)) && echo "YES"`
|
|
fpic += -mmacosx-version-min=10.1
|
|
else ifeq ($(platform), pi)
|
|
TARGET := $(TARGET_NAME)_libretro.so
|
|
fpic := -fPIC
|
|
SHARED := -shared -Wl,--version-script=link.T -Wl,--no-undefined
|
|
CFLAGS += -I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/vmcs_host/linux
|
|
GLES := 1
|
|
LIBS += -L/opt/vc/lib
|
|
else ifneq (,$(findstring ios,$(platform)))
|
|
TARGET := $(TARGET_NAME)_libretro_ios.dylib
|
|
fpic := -fPIC
|
|
SHARED := -dynamiclib
|
|
|
|
ifeq ($(IOSSDK),)
|
|
IOSSDK := $(shell xcodebuild -version -sdk iphoneos Path)
|
|
endif
|
|
|
|
GL_LIB := -framework OpenGLES
|
|
DEFINES := -DIOS
|
|
CFLAGS += -DGLES $(DEFINES)
|
|
CC = cc -arch armv7 -isysroot $(IOSSDK)
|
|
ifeq ($(platform),ios9)
|
|
CC += -miphoneos-version-min=8.0
|
|
CFLAGS += -miphoneos-version-min=8.0
|
|
else
|
|
CC += -miphoneos-version-min=5.0
|
|
CFLAGS += -miphoneos-version-min=5.0
|
|
endif
|
|
else ifneq (,$(findstring qnx,$(platform)))
|
|
TARGET := $(TARGET_NAME)_libretro_qnx.so
|
|
fpic := -fPIC
|
|
SHARED := -shared -Wl,--version-script=link.T
|
|
GL_LIB := -lGL
|
|
|
|
CC = qcc -Vgcc_ntoarmv7le
|
|
AR = qcc -Vgcc_ntoarmv7le
|
|
CFLAGS += -DGLES
|
|
GL_LIB := -lGLESv2
|
|
GLES := 1
|
|
else ifneq (,$(findstring armv,$(platform)))
|
|
CC = gcc
|
|
TARGET := $(TARGET_NAME)_libretro.so
|
|
fpic := -fPIC
|
|
SHARED := -shared -Wl,--version-script=link.T -Wl,--no-undefined
|
|
CFLAGS += -I.
|
|
ifneq (,$(findstring gles,$(platform)))
|
|
GLES := 1
|
|
else
|
|
GL_LIB := -lGL
|
|
endif
|
|
ifneq (,$(findstring cortexa8,$(platform)))
|
|
CFLAGS += -marm -mcpu=cortex-a8
|
|
else ifneq (,$(findstring cortexa9,$(platform)))
|
|
CFLAGS += -marm -mcpu=cortex-a9
|
|
endif
|
|
CFLAGS += -marm
|
|
ifneq (,$(findstring neon,$(platform)))
|
|
CFLAGS += -mfpu=neon
|
|
endif
|
|
ifneq (,$(findstring softfloat,$(platform)))
|
|
CFLAGS += -mfloat-abi=softfp
|
|
else ifneq (,$(findstring hardfloat,$(platform)))
|
|
CFLAGS += -mfloat-abi=hard
|
|
endif
|
|
CFLAGS += -DARM
|
|
# emscripten
|
|
else ifeq ($(platform), emscripten)
|
|
TARGET := $(TARGET_NAME)_libretro_emscripten.bc
|
|
else
|
|
CC = gcc
|
|
TARGET := $(TARGET_NAME)_libretro.dll
|
|
SHARED := -shared -static-libgcc -static-libstdc++ -s -Wl,--version-script=link.T -Wl,--no-undefined
|
|
GL_LIB := -lopengl32
|
|
CFLAGS += -I..
|
|
endif
|
|
|
|
ifeq ($(DEBUG), 1)
|
|
CFLAGS += -O0 -g
|
|
else
|
|
CFLAGS += -O3
|
|
endif
|
|
|
|
ifneq (,$(findstring qnx,$(platform)))
|
|
CFLAGS += -Wc,-std=c99
|
|
else
|
|
CFLAGS += -std=gnu99
|
|
endif
|
|
|
|
OBJECTS := libretro_gl_test.o ../../libretro-common/glsym/rglgen.o
|
|
CFLAGS += -Wall -pedantic $(fpic)
|
|
|
|
ifeq ($(GLES), 1)
|
|
CFLAGS += -DGLES -DHAVE_OPENGLES2
|
|
ifeq ($(GLES31), 1)
|
|
CFLAGS += -DHAVE_OPENGLES3 -DGLES31 -DGLES3
|
|
else ifeq ($(GLES3), 1)
|
|
CFLAGS += -DHAVE_OPENGLES3 -DGLES3
|
|
endif
|
|
LIBS += -lGLESv2 # Still link against GLESv2 when using GLES3 API, at least on desktop Linux.
|
|
OBJECTS += ../../libretro-common/glsym/glsym_es2.o
|
|
else
|
|
OBJECTS += ../../libretro-common/glsym/glsym_gl.o
|
|
LIBS += $(GL_LIB)
|
|
endif
|
|
|
|
ifeq ($(CORE), 1)
|
|
CFLAGS += -DCORE
|
|
endif
|
|
|
|
all: $(TARGET)
|
|
|
|
$(TARGET): $(OBJECTS)
|
|
$(CC) $(fpic) $(SHARED) $(INCLUDES) -o $@ $(OBJECTS) $(LIBS) -lm $(EXTRA_GL_LIBS)
|
|
|
|
%.o: %.c
|
|
$(CC) -I../../libretro-common/include $(CFLAGS) $(fpic) -c -o $@ $<
|
|
|
|
clean:
|
|
rm -f $(OBJECTS) $(TARGET)
|
|
|
|
.PHONY: clean
|
|
|