Merge pull request #514 from negativeExponent/fopen_utf8
[pcsx_rearmed.git] / Makefile
1 # Makefile for PCSX ReARMed
2
3 # default stuff goes here, so that config can override
4 TARGET ?= pcsx
5 CFLAGS += -Wall -Iinclude -ffast-math
6 ifeq ($(DEBUG), 1)
7 CFLAGS += -O0 -ggdb
8 else
9 ifeq ($(platform), $(filter $(platform), vita ctr))
10 CFLAGS += -O3 -DNDEBUG
11 else
12 CFLAGS += -O2 -DNDEBUG
13 endif
14 endif
15 CXXFLAGS += $(CFLAGS)
16 #DRC_DBG = 1
17 #PCNT = 1
18
19 all: config.mak target_ plugins_
20
21 ifndef NO_CONFIG_MAK
22 ifneq ($(wildcard config.mak),)
23 config.mak: ./configure
24         @echo $@ is out-of-date, running configure
25         @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
26 include config.mak
27 else
28 config.mak:
29         @echo "Please run ./configure before running make!"
30         @exit 1
31 endif
32 else # NO_CONFIG_MAK
33 config.mak:
34 endif
35
36 -include Makefile.local
37
38 CC_LINK ?= $(CC)
39 CC_AS ?= $(CC)
40 LDFLAGS += $(MAIN_LDFLAGS)
41 EXTRA_LDFLAGS ?= -Wl,-Map=$@.map
42 LDLIBS += $(MAIN_LDLIBS)
43 ifdef PCNT
44 CFLAGS += -DPCNT
45 endif
46
47 # core
48 OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \
49         libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \
50         libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
51         libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \
52         libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \
53         libpcsxcore/sio.o libpcsxcore/socket.o libpcsxcore/spu.o
54 OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
55 ifeq ($(WANT_ZLIB),1)
56 CFLAGS += -Ideps/libchdr/deps/zlib-1.2.11
57 OBJS += deps/libchdr/deps/zlib-1.2.11/adler32.o \
58         deps/libchdr/deps/zlib-1.2.11/compress.o \
59         deps/libchdr/deps/zlib-1.2.11/crc32.o \
60         deps/libchdr/deps/zlib-1.2.11/deflate.o \
61         deps/libchdr/deps/zlib-1.2.11/gzclose.o \
62         deps/libchdr/deps/zlib-1.2.11/gzlib.o \
63         deps/libchdr/deps/zlib-1.2.11/gzread.o \
64         deps/libchdr/deps/zlib-1.2.11/gzwrite.o \
65         deps/libchdr/deps/zlib-1.2.11/infback.o \
66         deps/libchdr/deps/zlib-1.2.11/inffast.o \
67         deps/libchdr/deps/zlib-1.2.11/inflate.o \
68         deps/libchdr/deps/zlib-1.2.11/inftrees.o \
69         deps/libchdr/deps/zlib-1.2.11/trees.o \
70         deps/libchdr/deps/zlib-1.2.11/uncompr.o \
71         deps/libchdr/deps/zlib-1.2.11/zutil.o
72 endif
73 ifeq "$(ARCH)" "arm"
74 OBJS += libpcsxcore/gte_arm.o
75 endif
76 ifeq "$(HAVE_NEON)" "1"
77 OBJS += libpcsxcore/gte_neon.o
78 endif
79 libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
80
81 # dynarec
82 ifeq "$(DYNAREC)" "lightrec"
83 CFLAGS += -Ideps/lightning/include -Ideps/lightrec \
84                   -DLIGHTREC -DLIGHTREC_STATIC
85 OBJS += libpcsxcore/lightrec/plugin.o
86 OBJS += deps/lightning/lib/jit_disasm.o \
87                 deps/lightning/lib/jit_memory.o \
88                 deps/lightning/lib/jit_names.o \
89                 deps/lightning/lib/jit_note.o \
90                 deps/lightning/lib/jit_print.o \
91                 deps/lightning/lib/jit_size.o \
92                 deps/lightning/lib/lightning.o \
93                 deps/lightrec/blockcache.o \
94                 deps/lightrec/disassembler.o \
95                 deps/lightrec/emitter.o \
96                 deps/lightrec/interpreter.o \
97                 deps/lightrec/lightrec.o \
98                 deps/lightrec/memmanager.o \
99                 deps/lightrec/optimizer.o \
100                 deps/lightrec/regcache.o \
101                 deps/lightrec/recompiler.o \
102                 deps/lightrec/reaper.o
103 ifeq ($(MMAP_WIN32),1)
104 CFLAGS += -Ideps/mman
105 OBJS += deps/mman/mman.o
106 endif
107 else ifeq "$(DYNAREC)" "ari64"
108 CFLAGS += -DNEW_DYNAREC
109 OBJS += libpcsxcore/new_dynarec/backends/psx/emu_if.o \
110                 libpcsxcore/new_dynarec/new_dynarec.o \
111                 libpcsxcore/new_dynarec/arm/linkage_arm.o \
112                 libpcsxcore/new_dynarec/backends/psx/pcsxmem.o
113 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/arm/assem_arm.c \
114         libpcsxcore/new_dynarec/backends/psx/pcsxmem_inline.c
115 else
116 OBJS += libpcsxcore/new_dynarec/backends/psx/emu_if.o
117 libpcsxcore/new_dynarec/backends/psx/emu_if.o: CFLAGS += -DDRC_DISABLE
118 frontend/libretro.o: CFLAGS += -DDRC_DISABLE
119 endif
120 ifdef DRC_DBG
121 libpcsxcore/new_dynarec/backends/psx/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
122 CFLAGS += -DDRC_DBG
123 endif
124 ifeq "$(DRC_CACHE_BASE)" "1"
125 libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
126 libpcsxcore/new_dynarec/backends/psx/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
127 libpcsxcore/new_dynarec/arm/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
128 endif
129
130 # spu
131 OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
132         plugins/dfsound/registers.o plugins/dfsound/spu.o \
133         plugins/dfsound/out.o plugins/dfsound/nullsnd.o
134 plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
135         plugins/dfsound/xa.c
136 ifeq "$(ARCH)" "arm"
137 OBJS += plugins/dfsound/arm_utils.o
138 endif
139 ifeq "$(HAVE_C64_TOOLS)" "1"
140 plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP
141 plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
142 frontend/menu.o: CFLAGS += -DC64X_DSP
143 endif
144 ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
145 plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
146 OBJS += plugins/dfsound/oss.o
147 endif
148 ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
149 plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
150 OBJS += plugins/dfsound/alsa.o
151 LDLIBS += -lasound
152 endif
153 ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
154 plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
155 OBJS += plugins/dfsound/sdl.o
156 endif
157 ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
158 plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
159 OBJS += plugins/dfsound/pulseaudio.o
160 endif
161 ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
162 plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
163 endif
164
165 # builtin gpu
166 OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
167 ifeq "$(BUILTIN_GPU)" "neon"
168 CFLAGS += -DGPU_NEON
169 OBJS += plugins/gpu_neon/psx_gpu_if.o
170 ifeq "$(HAVE_NEON)" "1"
171 OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
172 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
173 else
174 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
175 endif
176 plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
177 endif
178 ifeq "$(BUILTIN_GPU)" "peops"
179 CFLAGS += -DGPU_PEOPS
180 # note: code is not safe for strict-aliasing? (Castlevania problems)
181 plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
182 plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
183 OBJS += plugins/dfxvideo/gpulib_if.o
184 ifeq "$(THREAD_RENDERING)" "1"
185 CFLAGS += -DTHREAD_RENDERING
186 OBJS += plugins/gpulib/gpulib_thread_if.o
187 endif
188 endif
189 ifeq "$(BUILTIN_GPU)" "unai"
190 CFLAGS += -DGPU_UNAI
191 CFLAGS += -DUSE_GPULIB=1
192 #CFLAGS += -DINLINE="static __inline__"
193 #CFLAGS += -Dasm="__asm__ __volatile__"
194 OBJS += plugins/gpu_unai/gpulib_if.o
195 ifeq "$(ARCH)" "arm"
196 OBJS += plugins/gpu_unai/gpu_arm.o
197 endif
198 ifeq "$(THREAD_RENDERING)" "1"
199 CFLAGS += -DTHREAD_RENDERING
200 OBJS += plugins/gpulib/gpulib_thread_if.o
201 endif
202 plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3 
203 CC_LINK = $(CXX)
204 endif
205
206 # cdrcimg
207 OBJS += plugins/cdrcimg/cdrcimg.o
208
209 # libchdr
210 ifeq "$(HAVE_CHD)" "1"
211 CFLAGS += -Ideps/libchdr/include
212 CFLAGS += -Ideps/libchdr/include/libchdr
213 OBJS += deps/libchdr/deps/lzma-19.00/src/Alloc.o
214 OBJS += deps/libchdr/deps/lzma-19.00/src/Bra86.o
215 OBJS += deps/libchdr/deps/lzma-19.00/src/BraIA64.o
216 OBJS += deps/libchdr/deps/lzma-19.00/src/CpuArch.o
217 OBJS += deps/libchdr/deps/lzma-19.00/src/Delta.o
218 OBJS += deps/libchdr/deps/lzma-19.00/src/LzFind.o
219 OBJS += deps/libchdr/deps/lzma-19.00/src/Lzma86Dec.o
220 OBJS += deps/libchdr/deps/lzma-19.00/src/LzmaDec.o
221 OBJS += deps/libchdr/deps/lzma-19.00/src/LzmaEnc.o
222 OBJS += deps/libchdr/deps/lzma-19.00/src/Sort.o
223 OBJS += deps/libchdr/src/libchdr_bitstream.o
224 OBJS += deps/libchdr/src/libchdr_cdrom.o
225 OBJS += deps/libchdr/src/libchdr_chd.o
226 OBJS += deps/libchdr/src/libchdr_flac.o
227 OBJS += deps/libchdr/src/libchdr_huffman.o
228 CFLAGS += -Ideps/libchdr/deps/lzma-19.00/include
229 CFLAGS += -DHAVE_CHD -D_7ZIP_ST
230 LDFLAGS += -lm
231 endif
232
233 # dfinput
234 ifneq "$(PLATFORM)" "libretro"
235 OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
236 endif
237
238 # frontend/gui
239 OBJS += frontend/cspace.o
240 ifeq "$(HAVE_NEON)" "1"
241 OBJS += frontend/cspace_neon.o
242 else
243 ifeq "$(ARCH)" "arm"
244 OBJS += frontend/cspace_arm.o
245 endif
246 endif
247
248 ifeq "$(PLATFORM)" "generic"
249 OBJS += frontend/libpicofe/in_sdl.o
250 OBJS += frontend/libpicofe/plat_sdl.o
251 OBJS += frontend/libpicofe/plat_dummy.o
252 OBJS += frontend/libpicofe/linux/in_evdev.o
253 OBJS += frontend/plat_sdl.o
254 ifeq "$(HAVE_GLES)" "1"
255 OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
256 LDLIBS += $(LDLIBS_GLES)
257 frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
258 frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
259 frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
260 frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
261 endif
262 USE_PLUGIN_LIB = 1
263 USE_FRONTEND = 1
264 endif
265 ifeq "$(PLATFORM)" "pandora"
266 OBJS += frontend/libpicofe/pandora/plat.o
267 OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
268 OBJS += frontend/libpicofe/linux/in_evdev.o
269 OBJS += frontend/plat_pandora.o frontend/plat_omap.o
270 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
271 frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
272 USE_PLUGIN_LIB = 1
273 USE_FRONTEND = 1
274 endif
275 ifeq "$(PLATFORM)" "caanoo"
276 OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
277 OBJS += frontend/libpicofe/gp2x/soc_pollux.o
278 OBJS += frontend/libpicofe/linux/in_evdev.o
279 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
280 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
281 USE_PLUGIN_LIB = 1
282 USE_FRONTEND = 1
283 endif
284 ifeq "$(PLATFORM)" "maemo"
285 OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
286 maemo/%.o: maemo/%.c
287 USE_PLUGIN_LIB = 1
288 LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
289 CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
290 CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
291 LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
292 endif
293 ifeq "$(PLATFORM)" "libretro"
294 OBJS += libretro-common/compat/fopen_utf8.o
295 OBJS += libretro-common/encodings/compat_strl.o
296 OBJS += libretro-common/encodings/encoding_utf.o
297 OBJS += frontend/libretro.o
298 CFLAGS += -Ilibretro-common/include
299 CFLAGS += -DFRONTEND_SUPPORTS_RGB565
300 CFLAGS += -DHAVE_LIBRETRO
301
302 ifneq ($(DYNAREC),lightrec)
303 ifeq ($(MMAP_WIN32),1)
304 OBJS += libpcsxcore/memmap_win32.o
305 endif
306 endif
307 endif
308
309 ifeq "$(USE_PLUGIN_LIB)" "1"
310 OBJS += frontend/plugin_lib.o
311 OBJS += frontend/libpicofe/linux/plat.o
312 OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
313 ifeq "$(HAVE_NEON)" "1"
314 OBJS += frontend/libpicofe/arm/neon_scale2x.o
315 OBJS += frontend/libpicofe/arm/neon_eagle2x.o
316 frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
317 frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
318 endif
319 endif
320 ifeq "$(USE_FRONTEND)" "1"
321 OBJS += frontend/menu.o
322 OBJS += frontend/libpicofe/input.o
323 frontend/menu.o: frontend/libpicofe/menu.c
324 ifeq "$(HAVE_TSLIB)" "1"
325 frontend/%.o: CFLAGS += -DHAVE_TSLIB
326 OBJS += frontend/pl_gun_ts.o
327 endif
328 else
329 CFLAGS += -DNO_FRONTEND
330 endif
331
332 # misc
333 OBJS += frontend/main.o frontend/plugin.o
334
335
336 frontend/menu.o frontend/main.o: frontend/revision.h
337 frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
338
339 frontend/libpicofe/%.c:
340         @echo "libpicofe module is missing, please run:"
341         @echo "git submodule init && git submodule update"
342         @exit 1
343
344 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
345         $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
346
347 frontend/revision.h: FORCE
348         @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
349         @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
350         @rm $@_
351
352 %.o: %.S
353         $(CC_AS) $(CFLAGS) -c $^ -o $@
354
355 %.o: %.cpp
356         $(CXX) $(CXXFLAGS) -c -o $@ $<
357
358 %.o: %.c
359         $(CC) $(CFLAGS) -c -o $@ $<
360
361 target_: $(TARGET)
362
363 $(TARGET): $(OBJS)
364 ifeq ($(STATIC_LINKING), 1)
365         $(AR) rcs $@ $(OBJS)
366 else
367         $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
368 endif
369
370 clean: $(PLAT_CLEAN) clean_plugins
371         $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
372
373 ifneq ($(PLUGINS),)
374 plugins_: $(PLUGINS)
375
376 $(PLUGINS):
377         make -C $(dir $@)
378
379 clean_plugins:
380         make -C plugins/gpulib/ clean
381         for dir in $(PLUGINS) ; do \
382                 $(MAKE) -C $$(dirname $$dir) clean; done
383 else
384 plugins_:
385 clean_plugins:
386 endif
387
388 .PHONY: all clean target_ plugins_ clean_plugins FORCE
389
390 # ----------- release -----------
391
392 VER ?= $(shell git describe HEAD)
393
394 ifeq "$(PLATFORM)" "generic"
395 OUT = pcsx_rearmed_$(VER)
396
397 rel: pcsx $(PLUGINS) \
398                 frontend/pandora/skin readme.txt COPYING
399         rm -rf $(OUT)
400         mkdir -p $(OUT)/plugins
401         mkdir -p $(OUT)/bios
402         cp -r $^ $(OUT)/
403         mv $(OUT)/*.so* $(OUT)/plugins/
404         zip -9 -r $(OUT).zip $(OUT)
405 endif
406
407 ifeq "$(PLATFORM)" "pandora"
408 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
409
410 rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
411                 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
412                 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
413         rm -rf out
414         mkdir -p out/plugins
415         cp -r $^ out/
416         sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
417         rm out/pcsx.pxml.templ
418         mv out/*.so out/plugins/
419         $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
420 endif
421
422 ifeq "$(PLATFORM)" "caanoo"
423 PLAT_CLEAN = caanoo_clean
424
425 caanoo_clean:
426         $(RM) frontend/320240/pollux_set
427
428 rel: pcsx $(PLUGINS) \
429                 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
430                 frontend/320240/pcsxb.png frontend/320240/skin \
431                 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
432                 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
433                 frontend/320240/haptic_s.cfg \
434                 readme.txt COPYING
435         rm -rf out
436         mkdir -p out/pcsx_rearmed/plugins
437         cp -r $^ out/pcsx_rearmed/
438         mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
439         mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
440         mv out/pcsx_rearmed/pcsx_rearmed.ini out/
441         mkdir out/pcsx_rearmed/lib/
442         cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
443         mkdir out/pcsx_rearmed/bios/
444         cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
445 endif