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 ifeq ($(platform), osx) TARGET := $(TARGET_NAME)_libretro.dylib fpic := -fPIC SHARED := -dynamiclib GL_LIB := -framework OpenGL CFLAGS += -DOSX ifeq ($(arch),ppc) CFLAGS += -DBLARGG_BIG_ENDIAN=1 -D__ppc__ -DOSX_PPC 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 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 ifeq ($(platform), ios) TARGET := $(TARGET_NAME)_libretro_ios.dylib fpic := -fPIC SHARED := -dynamiclib GL_LIB := -framework OpenGLES DEFINES := -DIOS CFLAGS += -DGLES $(DEFINES) CC = clang -arch armv7 -isysroot $(IOSSDK) else ifeq ($(platform), qnx) 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 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 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 ifeq ($(platform), qnx) CFLAGS += -Wc,-std=gnu99 else CFLAGS += -std=gnu99 endif OBJECTS := libretro-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) -c -o $@ $< clean: rm -f $(OBJECTS) $(TARGET) .PHONY: clean