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