ALL: Huge upstream synch + PerRom DelaySI & CountPerOp parameters
[mupen64plus-pandora.git] / source / mupen64plus-rsp-hle / projects / unix / Makefile
1 #/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2 # *   mupen64plus-rsp-hle - Makefile                                        *
3 # *   Mupen64Plus homepage: http://code.google.com/p/mupen64plus/           *
4 # *   Copyright (C) 2008-2009 Richard Goedeken                              *
5 # *   Copyright (C) 2007-2008 DarkJeztr Tillin9                             *
6 # *                                                                         *
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.                                   *
11 # *                                                                         *
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.                          *
16 # *                                                                         *
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 Mupen64 HLE RSP plugin in Mupen64plus.
23
24 # detect operating system
25 UNAME ?= $(shell uname -s)
26 OS := NONE
27 ifeq ("$(UNAME)","Linux")
28   OS = LINUX
29   SO_EXTENSION = so
30   SHARED = -shared
31 endif
32 ifeq ("$(UNAME)","linux")
33   OS = LINUX
34   SO_EXTENSION = so
35   SHARED = -shared
36 endif
37 ifneq ("$(filter GNU hurd,$(UNAME))","")
38   OS = LINUX
39   SO_EXTENSION = so
40   SHARED = -shared
41 endif
42 ifeq ("$(UNAME)","Darwin")
43   OS = OSX
44   SO_EXTENSION = dylib
45   SHARED = -bundle
46 endif
47 ifeq ("$(UNAME)","FreeBSD")
48   OS = FREEBSD
49   SO_EXTENSION = so
50   SHARED = -shared
51 endif
52 ifeq ("$(UNAME)","OpenBSD")
53   OS = FREEBSD
54   SO_EXTENSION = so
55   SHARED = -shared
56   $(warning OS type "$(UNAME)" not officially supported.')
57 endif
58 ifneq ("$(filter GNU/kFreeBSD kfreebsd,$(UNAME))","")
59   OS = LINUX
60   SO_EXTENSION = so
61   SHARED = -shared
62 endif
63 ifeq ("$(patsubst MINGW%,MINGW,$(UNAME))","MINGW")
64   OS = MINGW
65   SO_EXTENSION = dll
66   SHARED = -shared
67   PIC = 0
68 endif
69 ifeq ("$(OS)","NONE")
70   $(error OS type "$(UNAME)" not supported.  Please file bug report at 'http://code.google.com/p/mupen64plus/issues')
71 endif
72
73 # detect system architecture
74 HOST_CPU ?= $(shell uname -m)
75 NO_ASM ?= 1
76 CPU := NONE
77 ifneq ("$(filter x86_64 amd64,$(HOST_CPU))","")
78   CPU := X86
79   ifeq ("$(BITS)", "32")
80     ARCH_DETECTED := 64BITS_32
81     PIC ?= 0
82   else
83     ARCH_DETECTED := 64BITS
84     PIC ?= 1
85   endif
86 endif
87 ifneq ("$(filter pentium i%86,$(HOST_CPU))","")
88   CPU := X86
89   ARCH_DETECTED := 32BITS
90   PIC ?= 0
91 endif
92 ifneq ("$(filter ppc macppc socppc powerpc,$(HOST_CPU))","")
93   CPU := PPC
94   ARCH_DETECTED := 32BITS
95   BIG_ENDIAN := 1
96   PIC ?= 1
97   $(warning Architecture "$(HOST_CPU)" not officially supported.')
98 endif
99 ifneq ("$(filter ppc64 powerpc64,$(HOST_CPU))","")
100   CPU := PPC
101   ARCH_DETECTED := 64BITS
102   BIG_ENDIAN := 1
103   PIC ?= 1
104   $(warning Architecture "$(HOST_CPU)" not officially supported.')
105 endif
106 ifneq ("$(filter arm%,$(HOST_CPU))","")
107   ifeq ("$(filter arm%b,$(HOST_CPU))","")
108     CPU := ARM
109     ARCH_DETECTED := 32BITS
110     PIC ?= 1
111     CFLAGS += -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -mtune=cortex-a8 -fsigned-char
112     $(warning Architecture "$(HOST_CPU)" not officially supported.')
113   endif
114 endif
115 ifeq ("$(CPU)","NONE")
116   $(error CPU type "$(HOST_CPU)" not supported.  Please file bug report at 'http://code.google.com/p/mupen64plus/issues')
117 endif
118
119 # base CFLAGS, LDLIBS, and LDFLAGS
120 OPTFLAGS ?= -O3
121 WARNFLAGS ?= -Wall
122 CFLAGS += $(OPTFLAGS) $(WARNFLAGS) -ffast-math -fno-strict-aliasing -fvisibility=hidden -I../../src
123 CXXFLAGS += -fvisibility-inlines-hidden
124 LDFLAGS += $(SHARED)
125
126 # Since we are building a shared library, we must compile with -fPIC on some architectures
127 # 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
128 ifeq ($(PIC), 1)
129   CFLAGS += -fPIC
130 else
131   CFLAGS += -fno-PIC
132 endif
133
134 ifeq ($(BIG_ENDIAN), 1)
135   CFLAGS += -DM64P_BIG_ENDIAN
136 endif
137
138 # tweak flags for 32-bit build on 64-bit system
139 ifeq ($(ARCH_DETECTED), 64BITS_32)
140   ifeq ($(OS), FREEBSD)
141     $(error Do not use the BITS=32 option with FreeBSD, use -m32 and -m elf_i386)
142   endif
143   CFLAGS += -m32
144   LDFLAGS += -Wl,-m,elf_i386
145 endif
146
147 # set special flags per-system
148 ifeq ($(OS), LINUX)
149   # only export api symbols
150   LDFLAGS += -Wl,-version-script,$(SRCDIR)/rsp_api_export.ver
151 endif
152 ifeq ($(OS), OSX)
153   #xcode-select has been around since XCode 3.0, i.e. OS X 10.5
154   OSX_SDK_ROOT = $(shell xcode-select -print-path)/Platforms/MacOSX.platform/Developer/SDKs
155   OSX_SDK_PATH = $(OSX_SDK_ROOT)/$(shell ls $(OSX_SDK_ROOT) | tail -1)
156
157   ifeq ($(CPU), X86)
158     ifeq ($(ARCH_DETECTED), 64BITS)
159       CFLAGS += -pipe -arch x86_64 -mmacosx-version-min=10.5 -isysroot $(OSX_SDK_PATH)
160     else
161       CFLAGS += -pipe -mmmx -msse -fomit-frame-pointer -arch i686 -mmacosx-version-min=10.5 -isysroot $(OSX_SDK_PATH)
162       LDFLAGS += -read_only_relocs suppress
163     endif
164   endif
165 endif
166
167 # set mupen64plus core API header path
168 ifneq ("$(APIDIR)","")
169   CFLAGS += "-I$(APIDIR)"
170 else
171   TRYDIR = ../../../mupen64plus-core/src/api
172   ifneq ("$(wildcard $(TRYDIR)/m64p_types.h)","")
173     CFLAGS += -I$(TRYDIR)
174   else
175     TRYDIR = /usr/local/include/mupen64plus
176     ifneq ("$(wildcard $(TRYDIR)/m64p_types.h)","")
177       CFLAGS += -I$(TRYDIR)
178     else
179       TRYDIR = /usr/include/mupen64plus
180       ifneq ("$(wildcard $(TRYDIR)/m64p_types.h)","")
181         CFLAGS += -I$(TRYDIR)
182       else
183         $(error Mupen64Plus API header files not found! Use makefile parameter APIDIR to force a location.)
184       endif
185     endif
186   endif
187 endif
188
189 # reduced compile output when running make without V=1
190 ifneq ($(findstring $(MAKEFLAGS),s),s)
191 ifndef V
192         Q_CC  = @echo '    CC  '$@;
193         Q_CXX = @echo '    CXX '$@;
194         Q_LD  = @echo '    LD  '$@;
195 endif
196 endif
197
198 # set base program pointers and flags
199 CC        = $(CROSS_COMPILE)gcc
200 CXX       = $(CROSS_COMPILE)g++
201 RM       ?= rm -f
202 INSTALL  ?= install
203 MKDIR ?= mkdir -p
204 COMPILE.c = $(Q_CC)$(CC) $(CFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c
205 COMPILE.cc = $(Q_CXX)$(CXX) $(CXXFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c
206 LINK.o = $(Q_LD)$(CXX) $(CXXFLAGS) $(LDFLAGS) $(TARGET_ARCH)
207
208 # set special flags for given Makefile parameters
209 ifeq ($(DEBUG),1)
210   CFLAGS += -g
211   INSTALL_STRIP_FLAG ?= 
212 else
213   ifneq ($(OS),OSX)
214     INSTALL_STRIP_FLAG ?= -s
215   endif
216 endif
217
218 # set installation options
219 ifeq ($(PREFIX),)
220   PREFIX := /usr/local
221 endif
222 ifeq ($(LIBDIR),)
223   LIBDIR := $(PREFIX)/lib
224 endif
225 ifeq ($(PLUGINDIR),)
226   PLUGINDIR := $(LIBDIR)/mupen64plus
227 endif
228
229 SRCDIR = ../../src
230 OBJDIR = _obj$(POSTFIX)
231
232 # list of source files to compile
233 SOURCE = \
234         $(SRCDIR)/main.c \
235         $(SRCDIR)/alist.c \
236         $(SRCDIR)/cicx105.c \
237         $(SRCDIR)/jpeg.c \
238         $(SRCDIR)/ucode3.cpp \
239         $(SRCDIR)/ucode2.cpp \
240         $(SRCDIR)/ucode1.cpp \
241         $(SRCDIR)/ucode3mp3.cpp
242
243 # generate a list of object files build, make a temporary directory for them
244 OBJECTS := $(patsubst $(SRCDIR)/%.c, $(OBJDIR)/%.o, $(filter %.c, $(SOURCE)))
245 OBJECTS += $(patsubst $(SRCDIR)/%.cpp, $(OBJDIR)/%.o, $(filter %.cpp, $(SOURCE)))
246 OBJDIRS = $(dir $(OBJECTS))
247 $(shell $(MKDIR) $(OBJDIRS))
248
249 # build targets
250 TARGET = mupen64plus-rsp-hle$(POSTFIX).$(SO_EXTENSION)
251
252 targets:
253         @echo "Mupen64Plus-rsp-hle makefile. "
254         @echo "  Targets:"
255         @echo "    all           == Build Mupen64Plus rsp-hle plugin"
256         @echo "    clean         == remove object files"
257         @echo "    rebuild       == clean and re-build all"
258         @echo "    install       == Install Mupen64Plus rsp-hle plugin"
259         @echo "    uninstall     == Uninstall Mupen64Plus rsp-hle plugin"
260         @echo "  Options:"
261         @echo "    BITS=32       == build 32-bit binaries on 64-bit machine"
262         @echo "    APIDIR=path   == path to find Mupen64Plus Core headers"
263         @echo "    OPTFLAGS=flag == compiler optimization (default: -O3 -flto)"
264         @echo "    WARNFLAGS=flag == compiler warning levels (default: -Wall)"
265         @echo "    PIC=(1|0)     == Force enable/disable of position independent code"
266         @echo "    POSTFIX=name  == String added to the name of the the build (default: '')"
267         @echo "  Install Options:"
268         @echo "    PREFIX=path   == install/uninstall prefix (default: /usr/local)"
269         @echo "    LIBDIR=path   == library prefix (default: PREFIX/lib)"
270         @echo "    PLUGINDIR=path == path to install plugin libraries (default: LIBDIR/mupen64plus)"
271         @echo "    DESTDIR=path  == path to prepend to all installation paths (only for packagers)"
272         @echo "  Debugging Options:"
273         @echo "    DEBUG=1       == add debugging symbols"
274         @echo "    V=1           == show verbose compiler output"
275
276 all: $(TARGET)
277
278 install: $(TARGET)
279         $(INSTALL) -d "$(DESTDIR)$(PLUGINDIR)"
280         $(INSTALL) -m 0644 $(INSTALL_STRIP_FLAG) $(TARGET) "$(DESTDIR)$(PLUGINDIR)"
281
282 uninstall:
283         $(RM) "$(DESTDIR)$(PLUGINDIR)/$(TARGET)"
284
285 clean:
286         $(RM) -r $(OBJDIR) $(TARGET)
287
288 rebuild: clean all
289
290 # build dependency files
291 CFLAGS += -MD -MP
292 -include $(OBJECTS:.o=.d)
293
294 CXXFLAGS += $(CFLAGS)
295
296 # standard build rules
297 $(OBJDIR)/%.o: $(SRCDIR)/%.c
298         $(COMPILE.c) -o $@ $<
299
300 $(OBJDIR)/%.o: $(SRCDIR)/%.cpp
301         $(COMPILE.cc) -o $@ $<
302
303 $(TARGET): $(OBJECTS)
304         $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
305
306 .PHONY: all clean install uninstall targets