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