Added missing launcher
[mupen64plus-pandora.git] / source / front-end / projects / unix / Makefile
CommitLineData
5288f542 1#/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2# * Mupen64plus - Makefile *
3# * Mupen64Plus homepage: http://code.google.com/p/mupen64plus/ *
4# * Copyright (C) 2009 Richard42 *
5# * *
6# * This program is free software; you can redistribute it and/or modify *
7# * it under the terms of the GNU General Public License as published by *
8# * the Free Software Foundation; either version 2 of the License, or *
9# * (at your option) any later version. *
10# * *
11# * This program is distributed in the hope that it will be useful, *
12# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14# * GNU General Public License for more details. *
15# * *
16# * You should have received a copy of the GNU General Public License *
17# * along with this program; if not, write to the *
18# * Free Software Foundation, Inc., *
19# * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
20# * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
21# Makefile for Mupen64plus-ui-console
22
23# detect operation system
24UNAME ?= $(shell uname -s)
25OS := NONE
26ifeq ("$(UNAME)","Linux")
27 OS = LINUX
28endif
29ifeq ("$(UNAME)","linux")
30 OS = LINUX
31endif
32ifneq ("$(filter GNU hurd,$(UNAME))","")
33 OS = LINUX
34endif
35ifeq ("$(UNAME)","Darwin")
36 OS = OSX
37endif
38ifeq ("$(UNAME)","FreeBSD")
39 OS = FREEBSD
40endif
41ifeq ("$(UNAME)","OpenBSD")
42 OS = FREEBSD
43 $(warning OS type "$(UNAME)" not officially supported.')
44endif
45ifneq ("$(filter GNU/kFreeBSD kfreebsd,$(UNAME))","")
46 OS = LINUX
47endif
48ifeq ("$(patsubst MINGW%,MINGW,$(UNAME))","MINGW")
49 OS = MINGW
50endif
51ifeq ("$(OS)","NONE")
52 $(error OS type "$(UNAME)" not supported. Please file bug report at 'http://code.google.com/p/mupen64plus/issues')
53endif
54
55# detect system architecture
56HOST_CPU ?= $(shell uname -m)
57NO_ASM ?= 1
58CPU := NONE
59ifneq ("$(filter x86_64 amd64,$(HOST_CPU))","")
60 CPU := X86
61 ifeq ("$(BITS)", "32")
62 ARCH_DETECTED := 64BITS_32
63 else
64 ARCH_DETECTED := 64BITS
65 endif
66endif
67ifneq ("$(filter pentium i%86,$(HOST_CPU))","")
68 CPU := X86
69 ARCH_DETECTED := 32BITS
70endif
71ifneq ("$(filter ppc macppc socppc powerpc,$(HOST_CPU))","")
72 CPU := PPC
73 ARCH_DETECTED := 32BITS
74 BIG_ENDIAN := 1
75 $(warning Architecture "$(HOST_CPU)" not officially supported.')
76endif
77ifneq ("$(filter ppc64 powerpc64,$(HOST_CPU))","")
78 CPU := PPC
79 ARCH_DETECTED := 64BITS
80 BIG_ENDIAN := 1
81 $(warning Architecture "$(HOST_CPU)" not officially supported.')
82endif
83ifneq ("$(filter arm%,$(HOST_CPU))","")
84 ifeq ("$(filter arm%b,$(HOST_CPU))","")
85 CPU := ARM
86 ARCH_DETECTED := 32BITS
87 CFLAGS += -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -mtune=cortex-a8 -fsigned-char -ffast-math
88# CFLAGS += -DANDROID
89# CFLAGS += -DPAULSCODE
90 $(warning Architecture "$(HOST_CPU)" not officially supported.')
91 endif
92endif
93ifeq ("$(CPU)","NONE")
94 $(error CPU type "$(HOST_CPU)" not supported. Please file bug report at 'http://code.google.com/p/mupen64plus/issues')
95endif
96
97# base CFLAGS, LDLIBS, and LDFLAGS
98OPTFLAGS ?= -O3
99WARNFLAGS ?= -Wall
100
101CFLAGS += $(OPTFLAGS) $(WARNFLAGS) -ffast-math -fno-strict-aliasing -I../../src
102ifeq ($(OS), MINGW)
103 CFLAGS += -lpthread
104 LDLIBS += -lpthread
105else
106 CFLAGS += -pthread
107 LDLIBS += -pthread
108endif
109
110ifeq ($(PIE), 1)
111 CFLAGS += -fPIE
112 LDFLAGS += -pie
113else
114 CFLAGS += -fno-PIE
115endif
116
117# set special flags per-system
118ifeq ($(OS), LINUX)
119 LDLIBS += -ldl
120endif
121ifeq ($(OS), OSX)
122 #xcode-select has been around since XCode 3.0, i.e. OS X 10.5
123 OSX_SDK_ROOT = $(shell xcode-select -print-path)/Platforms/MacOSX.platform/Developer/SDKs
124 OSX_SDK_PATH = $(OSX_SDK_ROOT)/$(shell ls $(OSX_SDK_ROOT) | tail -1)
125
126 ifeq ($(CPU), X86)
127 ifeq ($(ARCH_DETECTED), 64BITS)
128 CFLAGS += -pipe -arch x86_64 -mmacosx-version-min=10.5 -isysroot $(OSX_SDK_PATH)
129 else
130 CFLAGS += -pipe -mmmx -msse -fomit-frame-pointer -arch i686 -mmacosx-version-min=10.5 -isysroot $(OSX_SDK_PATH)
131 endif
132 endif
133endif
134
135# test for presence of SDL
136ifeq ($(origin SDL_CFLAGS) $(origin SDL_LDLIBS), undefined undefined)
137 SDL_CONFIG = $(CROSS_COMPILE)sdl-config
138 ifeq ($(shell which $(SDL_CONFIG) 2>/dev/null),)
139 $(error No SDL development libraries found!)
140 endif
141 SDL_CFLAGS += $(shell $(SDL_CONFIG) --cflags)
142 SDL_LDLIBS += $(shell $(SDL_CONFIG) --libs)
143endif
144CFLAGS += $(SDL_CFLAGS)
145LDLIBS += $(SDL_LDLIBS)
146
147ifeq ($(OS), MINGW)
148 LDLIBS += -mconsole
149endif
150
151ifeq ($(BIG_ENDIAN), 1)
152 CFLAGS += -DM64P_BIG_ENDIAN
153endif
154
155# tweak flags for 32-bit build on 64-bit system
156ifeq ($(ARCH_DETECTED), 64BITS_32)
157 ifeq ($(OS), FREEBSD)
158 $(error Do not use the BITS=32 option with FreeBSD, use -m32 and -m elf_i386)
159 endif
160 CFLAGS += -m32
161 LDFLAGS += -Wl,-m,elf_i386
162endif
163
164# set mupen64plus core API header path
165ifneq ("$(APIDIR)","")
166 CFLAGS += "-I$(APIDIR)"
167else
168 TRYDIR = ../../../mupen64plus-core/src/api
169 ifneq ("$(wildcard $(TRYDIR)/m64p_types.h)","")
170 CFLAGS += -I$(TRYDIR)
171 else
172 TRYDIR = /usr/local/include/mupen64plus
173 ifneq ("$(wildcard $(TRYDIR)/m64p_types.h)","")
174 CFLAGS += -I$(TRYDIR)
175 else
176 TRYDIR = /usr/include/mupen64plus
177 ifneq ("$(wildcard $(TRYDIR)/m64p_types.h)","")
178 CFLAGS += -I$(TRYDIR)
179 else
180 $(error Mupen64Plus API header files not found! Use makefile parameter APIDIR to force a location.)
181 endif
182 endif
183 endif
184endif
185
186# reduced compile output when running make without V=1
187ifneq ($(findstring $(MAKEFLAGS),s),s)
188ifndef V
189 Q_CC = @echo ' CC '$@;
190 Q_LD = @echo ' LD '$@;
191endif
192endif
193
194# set base program pointers and flags
195CC = $(CROSS_COMPILE)gcc
196CXX = $(CROSS_COMPILE)g++
197RM ?= rm -f
198INSTALL ?= install
199MKDIR ?= mkdir -p
200COMPILE.c = $(Q_CC)$(CC) $(CFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c
201LINK.o = $(Q_LD)$(CC) $(CFLAGS) $(LDFLAGS) $(TARGET_ARCH)
202
203# set special flags for given Makefile parameters
204# note: COREDIR _must_ end in a slash if you want it to work; not necessary for the others
205ifneq ($(PLUGINDIR),)
206 CFLAGS += '-DPLUGINDIR="$(PLUGINDIR)"'
207endif
208ifneq ($(COREDIR),)
209 CFLAGS += '-DCOREDIR="$(COREDIR)"'
210endif
211ifneq ($(SHAREDIR),)
212 CFLAGS += '-DSHAREDIR="$(SHAREDIR)"'
213endif
214ifeq ($(DEBUG),1)
215 CFLAGS += -g -gdwarf-2
216 INSTALL_STRIP_FLAG ?=
217else
218 INSTALL_STRIP_FLAG ?= -s
219endif
220
221# set installation options
222ifeq ($(PREFIX),)
223 PREFIX := /usr/local
224endif
225ifeq ($(BINDIR),)
226 BINDIR := $(PREFIX)/bin
227endif
228ifeq ($(MANDIR),)
229 MANDIR := $(PREFIX)/share/man
230endif
231
232SRCDIR = ../../src
233OBJDIR = _obj$(POSTFIX)
234
235ifeq ("$(OS)","MINGW")
236 EXEEXT = .exe
237else
238 EXEEXT =
239endif
240
241# list of source files to compile
242SOURCE = \
243 $(SRCDIR)/cheat.c \
244 $(SRCDIR)/compare_core.c \
245 $(SRCDIR)/core_interface.c \
246 $(SRCDIR)/main.c \
247 $(SRCDIR)/plugin.c
248
249ifeq ($(OS), MINGW)
250SOURCE += \
251 $(SRCDIR)/osal_dynamiclib_win32.c \
252 $(SRCDIR)/osal_files_win32.c
253else
254SOURCE += \
255 $(SRCDIR)/osal_dynamiclib_unix.c \
256 $(SRCDIR)/osal_files_unix.c
257endif
258
259# generate a list of object files build, make a temporary directory for them
260OBJECTS := $(patsubst $(SRCDIR)/%.c, $(OBJDIR)/%.o, $(filter %.c, $(SOURCE)))
261OBJDIRS = $(dir $(OBJECTS))
262$(shell $(MKDIR) $(OBJDIRS))
263
264# build targets
265TARGET = mupen64plus$(POSTFIX)$(EXEEXT)
266
267targets:
268 @echo "Mupen64Plus-ui-console makefile."
269 @echo " Targets:"
270 @echo " all == Build Mupen64Plus console front-end application"
271 @echo " clean == remove object files and build products"
272 @echo " rebuild == clean and re-build all"
273 @echo " install == Install Mupen64Plus console front-end application"
274 @echo " uninstall == Uninstall Mupen64Plus console front-end application"
275 @echo " Options:"
276 @echo " COREDIR=path == default path to search for Mupen64Plus Core (must end with slash)"
277 @echo " PLUGINDIR=path == default path to search for plugins"
278 @echo " SHAREDIR=path == default path to search for shared data files"
279 @echo " APIDIR=path == path to find Mupen64Plus Core headers"
280 @echo " OPTFLAGS=flags == compiler optimization (default: -O3 -flto)"
281 @echo " WARNFLAGS=flag == compiler warning levels (default: -Wall)"
282 @echo " PIE=(1|0) == Force enable/disable of position independent executables"
283 @echo " POSTFIX=name == String added to the name of the the build (default: '')"
284 @echo " Install Options:"
285 @echo " PREFIX=path == install/uninstall prefix (default: /usr/local/)"
286 @echo " BINDIR=path == path to install mupen64plus binary (default: PREFIX/bin/)"
287 @echo " MANDIR=path == path to install mupen64plus manual page (default: PREFIX/share/man)"
288 @echo " DESTDIR=path == path to prepend to all installation paths (only for packagers)"
289 @echo " Debugging Options:"
290 @echo " DEBUG=1 == add debugging symbols to application binary"
291 @echo " V=1 == show verbose compiler output"
292
293all: $(TARGET)
294
295clean:
296 $(RM) -r $(OBJDIR) $(TARGET)
297
298rebuild: clean all
299
300install: $(TARGET)
301 $(INSTALL) -d "$(DESTDIR)$(BINDIR)"
302 $(INSTALL) -m 0755 $(INSTALL_STRIP_FLAG) $(TARGET) "$(DESTDIR)$(BINDIR)"
303 $(INSTALL) -d "$(DESTDIR)$(MANDIR)/man6"
304 $(INSTALL) -m 0644 ../../doc/mupen64plus.6 "$(DESTDIR)$(MANDIR)/man6"
305
306uninstall:
307 $(RM) "$(DESTDIR)$(BINDIR)/$(TARGET)" "$(DESTDIR)$(MANDIR)/man6/mupen64plus.6"
308
309# build dependency files
310CFLAGS += -MD -MP
311-include $(OBJECTS:.o=.d)
312
313# standard build rules
314$(OBJDIR)/%.o: $(SRCDIR)/%.c
315 $(COMPILE.c) -o $@ $<
316
317$(TARGET): $(OBJECTS)
318 $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
319
320.PHONY: all clean install uninstall targets