1 #/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2 # * Mupen64plus-video-rice - Makefile *
3 # * Mupen64Plus homepage: http://code.google.com/p/mupen64plus/ *
4 # * Copyright (C) 2007-2009 Richard Goedeken *
5 # * Copyright (C) 2007-2008 DarkJeztr Tillin9 *
7 # * This program is free software; you can redistribute it and/or modify *
8 # * it under the terms of the GNU General Public License as published by *
9 # * the Free Software Foundation; either version 2 of the License, or *
10 # * (at your option) any later version. *
12 # * This program is distributed in the hope that it will be useful, *
13 # * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 # * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 # * GNU General Public License for more details. *
17 # * You should have received a copy of the GNU General Public License *
18 # * along with this program; if not, write to the *
19 # * Free Software Foundation, Inc., *
20 # * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
21 # * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
22 # Makefile for RiceVideo plugin in Mupen64Plus
24 # detect operating system
25 UNAME ?= $(shell uname -s)
27 ifeq ("$(UNAME)","Linux")
32 ifeq ("$(UNAME)","linux")
37 ifneq ("$(filter GNU hurd,$(UNAME))","")
42 ifeq ("$(UNAME)","Darwin")
46 PIC = 1 # force PIC under OSX
48 ifeq ("$(UNAME)","FreeBSD")
53 ifeq ("$(UNAME)","OpenBSD")
57 $(warning OS type "$(UNAME)" not officially supported.')
59 ifneq ("$(filter GNU/kFreeBSD kfreebsd,$(UNAME))","")
64 ifeq ("$(patsubst MINGW%,MINGW,$(UNAME))","MINGW")
71 $(error OS type "$(UNAME)" not supported. Please file bug report at 'http://code.google.com/p/mupen64plus/issues')
74 # detect system architecture
75 HOST_CPU ?= $(shell uname -m)
77 ifneq ("$(filter x86_64 amd64,$(HOST_CPU))","")
79 ifeq ("$(BITS)", "32")
80 ARCH_DETECTED := 64BITS_32
83 ARCH_DETECTED := 64BITS
87 ifneq ("$(filter pentium i%86,$(HOST_CPU))","")
89 ARCH_DETECTED := 32BITS
92 ifneq ("$(filter ppc macppc socppc powerpc,$(HOST_CPU))","")
94 ARCH_DETECTED := 32BITS
98 $(warning Architecture "$(HOST_CPU)" not officially supported.')
100 ifneq ("$(filter ppc64 powerpc64,$(HOST_CPU))","")
102 ARCH_DETECTED := 64BITS
106 $(warning Architecture "$(HOST_CPU)" not officially supported.')
108 ifneq ("$(filter arm%,$(HOST_CPU))","")
109 ifeq ("$(filter arm%b,$(HOST_CPU))","")
111 ARCH_DETECTED := 32BITS
114 CFLAGS += -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -mtune=cortex-a8 -fsigned-char -ffast-math
116 CFLAGS += -DPAULSCODE
117 $(warning Architecture "$(HOST_CPU)" not officially supported.')
120 ifeq ("$(CPU)","NONE")
121 $(error CPU type "$(HOST_CPU)" not supported. Please file bug report at 'http://code.google.com/p/mupen64plus/issues')
124 # base CFLAGS, LDLIBS, and LDFLAGS
125 OPTFLAGS ?= -O4 -ffast-math
126 #-flto -fuse-linker-plugin
128 CFLAGS += $(OPTFLAGS) $(WARNFLAGS) -ffast-math -fno-strict-aliasing -fvisibility=hidden -I../../src
129 CXXFLAGS += -fvisibility-inlines-hidden
136 # Since we are building a shared library, we must compile with -fPIC on some architectures
137 # On 32-bit x86 systems we do not want to use -fPIC because we don't have to and it has a big performance penalty on this arch
144 ifeq ($(BIG_ENDIAN), 1)
145 CFLAGS += -DM64P_BIG_ENDIAN
148 # tweak flags for 32-bit build on 64-bit system
149 ifeq ($(ARCH_DETECTED), 64BITS_32)
150 ifeq ($(OS), FREEBSD)
151 $(error Do not use the BITS=32 option with FreeBSD, use -m32 and -m elf_i386)
154 LDFLAGS += -Wl,-m,elf_i386
157 # set special flags per-system
160 # only export api symbols
161 LDFLAGS += -Wl,-version-script,$(SRCDIR)/video_api_export.ver
164 # Select the proper SDK
165 # Also, SDKs are stored in a different location since XCode 4.3
166 OSX_SDK ?= $(shell sw_vers -productVersion | cut -f1 -f2 -d .)
167 OSX_XCODEMAJ = $(shell xcodebuild -version | grep '[0-9]*\.[0-9]*' | cut -f2 -d ' ' | cut -f1 -d .)
168 OSX_XCODEMIN = $(shell xcodebuild -version | grep '[0-9]*\.[0-9]*' | cut -f2 -d ' ' | cut -f2 -d .)
169 OSX_XCODEGE43 = $(shell echo "`expr $(OSX_XCODEMAJ) \>= 4``expr $(OSX_XCODEMIN) \>= 3`")
170 ifeq ($(OSX_XCODEGE43), 11)
171 OSX_SYSROOT := /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
173 OSX_SYSROOT := /Developer/SDKs
177 ifeq ($(ARCH_DETECTED), 64BITS)
178 CFLAGS += -pipe -arch x86_64 -mmacosx-version-min=$(OSX_SDK) -isysroot $(OSX_SYSROOT)/MacOSX$(OSX_SDK).sdk
182 CFLAGS += -pipe -mmmx -msse -fomit-frame-pointer -arch i686 -mmacosx-version-min=$(OSX_SDK) -isysroot $(OSX_SYSROOT)/MacOSX$(OSX_SDK).sdk
189 # test for essential build dependencies
190 ifeq ($(origin PKG_CONFIG), undefined)
191 PKG_CONFIG = $(CROSS_COMPILE)pkg-config
192 ifeq ($(shell which $(PKG_CONFIG) 2>/dev/null),)
193 $(error $(PKG_CONFIG) not found)
197 ifeq ($(origin LIBPNG_CFLAGS) $(origin LIBPNG_LDLIBS), undefined undefined)
198 ifeq ($(shell $(PKG_CONFIG) --modversion libpng 2>/dev/null),)
199 $(error No libpng development libraries found!)
201 LIBPNG_CFLAGS += $(shell $(PKG_CONFIG) --cflags libpng)
202 LIBPNG_LDLIBS += $(shell $(PKG_CONFIG) --libs libpng)
204 CFLAGS += $(LIBPNG_CFLAGS)
205 LDLIBS += $(LIBPNG_LDLIBS)
207 # search for OpenGL libraries
209 GL_LDLIBS = -framework OpenGL
212 GL_LDLIBS = -lopengl32
214 ifeq ($(origin GL_CFLAGS) $(origin GL_LDLIBS), undefined undefined)
215 ifeq ($(shell $(PKG_CONFIG) --modversion gl 2>/dev/null),)
216 $(error No OpenGL development libraries found!)
218 # GL_CFLAGS += $(shell $(PKG_CONFIG) --cflags gl)
219 # GL_LDLIBS += $(shell $(PKG_CONFIG) --libs gl)
220 GL_CFLAGS += -I/mnt/utmp/codeblocks/usr/include/GLES2
221 GL_LDLIBS += -lGLESv2 -lrt
223 CFLAGS += $(GL_CFLAGS)
224 LDLIBS += $(GL_LDLIBS)
226 # test for presence of SDL
227 ifeq ($(origin SDL_CFLAGS) $(origin SDL_LDLIBS), undefined undefined)
228 SDL_CONFIG = $(CROSS_COMPILE)sdl-config
229 ifeq ($(shell which $(SDL_CONFIG) 2>/dev/null),)
230 $(error No SDL development libraries found!)
232 SDL_CFLAGS += $(shell $(SDL_CONFIG) --cflags)
233 SDL_LDLIBS += $(shell $(SDL_CONFIG) --libs)
235 CFLAGS += $(SDL_CFLAGS)
236 LDLIBS += $(SDL_LDLIBS)
238 # set mupen64plus core API header path
239 ifneq ("$(APIDIR)","")
240 CFLAGS += "-I$(APIDIR)"
242 TRYDIR = ../../../mupen64plus-core/src/api
243 ifneq ("$(wildcard $(TRYDIR)/m64p_types.h)","")
244 CFLAGS += -I$(TRYDIR)
246 TRYDIR = /usr/local/include/mupen64plus
247 ifneq ("$(wildcard $(TRYDIR)/m64p_types.h)","")
248 CFLAGS += -I$(TRYDIR)
250 TRYDIR = /usr/include/mupen64plus
251 ifneq ("$(wildcard $(TRYDIR)/m64p_types.h)","")
252 CFLAGS += -I$(TRYDIR)
254 $(error Mupen64Plus API header files not found! Use makefile parameter APIDIR to force a location.)
260 # reduced compile output when running make without V=1
261 ifneq ($(findstring $(MAKEFLAGS),s),s)
263 Q_CC = @echo ' CC '$@;
264 Q_CXX = @echo ' CXX '$@;
265 Q_LD = @echo ' LD '$@;
269 # set base program pointers and flags
270 CC = $(CROSS_COMPILE)gcc
271 CXX = $(CROSS_COMPILE)g++
275 COMPILE.c = $(Q_CC)$(CC) $(CFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c
276 COMPILE.cc = $(Q_CXX)$(CXX) $(CXXFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c
277 LINK.o = $(Q_LD)$(CXX) $(CXXFLAGS) $(LDFLAGS) $(TARGET_ARCH)
279 # set special flags for given Makefile parameters
282 INSTALL_STRIP_FLAG ?=
285 INSTALL_STRIP_FLAG ?= -s
292 # set installation options
297 SHAREDIR := $(PREFIX)/share/mupen64plus
300 LIBDIR := $(PREFIX)/lib
303 PLUGINDIR := $(LIBDIR)/mupen64plus
307 OBJDIR = _obj$(POSTFIX)
309 # list of source files to compile
311 $(SRCDIR)/Blender.cpp \
312 $(SRCDIR)/Combiner.cpp \
313 $(SRCDIR)/CombinerTable.cpp \
314 $(SRCDIR)/Config.cpp \
315 $(SRCDIR)/ConvertImage.cpp \
316 $(SRCDIR)/ConvertImage16.cpp \
317 $(SRCDIR)/Debugger.cpp \
318 $(SRCDIR)/DecodedMux.cpp \
319 $(SRCDIR)/DeviceBuilder.cpp \
320 $(SRCDIR)/DirectXDecodedMux.cpp \
321 $(SRCDIR)/FrameBuffer.cpp \
322 $(SRCDIR)/GeneralCombiner.cpp \
323 $(SRCDIR)/GraphicsContext.cpp \
324 $(SRCDIR)/OGLCombiner.cpp \
325 $(SRCDIR)/OGLDecodedMux.cpp \
326 $(SRCDIR)/OGLExtCombiner.cpp \
327 $(SRCDIR)/OGLExtRender.cpp \
328 $(SRCDIR)/OGLES2FragmentShaders.cpp \
329 $(SRCDIR)/OGLGraphicsContext.cpp \
330 $(SRCDIR)/OGLRender.cpp \
331 $(SRCDIR)/OGLRenderExt.cpp \
332 $(SRCDIR)/OGLTexture.cpp \
333 $(SRCDIR)/Render.cpp \
334 $(SRCDIR)/RenderBase.cpp \
335 $(SRCDIR)/RenderExt.cpp \
336 $(SRCDIR)/RenderTexture.cpp \
337 $(SRCDIR)/RSP_Parser.cpp \
338 $(SRCDIR)/RSP_S2DEX.cpp \
339 $(SRCDIR)/Texture.cpp \
340 $(SRCDIR)/TextureFilters.cpp \
341 $(SRCDIR)/TextureFilters_2xsai.cpp \
342 $(SRCDIR)/TextureFilters_hq2x.cpp \
343 $(SRCDIR)/TextureFilters_hq4x.cpp \
344 $(SRCDIR)/TextureManager.cpp \
345 $(SRCDIR)/VectorMath.cpp \
346 $(SRCDIR)/Video.cpp \
347 $(SRCDIR)/liblinux/BMGImage.c \
348 $(SRCDIR)/liblinux/BMGUtils.c \
349 $(SRCDIR)/liblinux/bmp.c \
350 $(SRCDIR)/liblinux/pngrw.c \
354 $(SRCDIR)/osal_dynamiclib_win32.c \
355 $(SRCDIR)/osal_files_win32.c
358 $(SRCDIR)/osal_dynamiclib_unix.c \
359 $(SRCDIR)/osal_files_unix.c
362 # generate a list of object files build, make a temporary directory for them
363 OBJECTS := $(patsubst $(SRCDIR)/%.c, $(OBJDIR)/%.o, $(filter %.c, $(SOURCE)))
364 OBJECTS += $(patsubst $(SRCDIR)/%.cpp, $(OBJDIR)/%.o, $(filter %.cpp, $(SOURCE)))
365 OBJDIRS = $(dir $(OBJECTS))
366 $(shell $(MKDIR) $(OBJDIRS))
369 TARGET = mupen64plus-video-rice$(POSTFIX).$(SO_EXTENSION)
372 @echo "Mupen64plus-video-rice N64 Graphics plugin makefile. "
374 @echo " all == Build Mupen64plus-video-rice plugin"
375 @echo " clean == remove object files"
376 @echo " rebuild == clean and re-build all"
377 @echo " install == Install Mupen64Plus-video-rice plugin"
378 @echo " uninstall == Uninstall Mupen64Plus-video-rice plugin"
380 @echo " BITS=32 == build 32-bit binaries on 64-bit machine"
381 @echo " NO_ASM=1 == build without inline assembly code (x86 MMX/SSE)"
382 @echo " APIDIR=path == path to find Mupen64Plus Core headers"
383 @echo " OPTFLAGS=flag == compiler optimization (default: -O3 -flto)"
384 @echo " WARNFLAGS=flag == compiler warning levels (default: -Wall)"
385 @echo " PIC=(1|0) == Force enable/disable of position independent code"
386 @echo " POSTFIX=name == String added to the name of the the build (default: '')"
387 @echo " Install Options:"
388 @echo " PREFIX=path == install/uninstall prefix (default: /usr/local)"
389 @echo " SHAREDIR=path == path to install shared data files (default: PREFIX/share/mupen64plus)"
390 @echo " LIBDIR=path == library prefix (default: PREFIX/lib)"
391 @echo " PLUGINDIR=path == path to install plugin libraries (default: LIBDIR/mupen64plus)"
392 @echo " DESTDIR=path == path to prepend to all installation paths (only for packagers)"
393 @echo " Debugging Options:"
394 @echo " DEBUG=1 == add debugging symbols"
395 @echo " V=1 == show verbose compiler output"
400 $(INSTALL) -d "$(DESTDIR)$(PLUGINDIR)"
401 $(INSTALL) -m 0644 $(INSTALL_STRIP_FLAG) $(TARGET) "$(DESTDIR)$(PLUGINDIR)"
402 $(INSTALL) -d "$(DESTDIR)$(SHAREDIR)"
403 $(INSTALL) -m 0644 "../../data/RiceVideoLinux.ini" "$(DESTDIR)$(SHAREDIR)"
406 $(RM) "$(DESTDIR)$(PLUGINDIR)/$(TARGET)"
407 $(RM) "$(DESTDIR)$(SHAREDIR)/RiceVideoLinux.ini"
410 $(RM) -r $(OBJDIR) $(TARGET)
414 # build dependency files
416 -include $(OBJECTS:.o=.d)
418 CXXFLAGS += $(CFLAGS)
420 # standard build rules
421 $(OBJDIR)/%.o: $(SRCDIR)/%.c
422 $(COMPILE.c) -o $@ $<
424 $(OBJDIR)/%.o: $(SRCDIR)/%.cpp
425 $(COMPILE.cc) -o $@ $<
427 $(TARGET): $(OBJECTS)
428 $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
430 .PHONY: all clean install uninstall targets