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