1 # Makefile for PCSX ReARMed
3 # default stuff goes here, so that config can override
5 CFLAGS += -Wall -Iinclude -ffast-math
9 ifeq ($(platform), $(filter $(platform), vita ctr))
10 CFLAGS += -O3 -DNDEBUG
12 CFLAGS += -O2 -DNDEBUG
15 ifeq ($(DEBUG_ASAN), 1)
16 CFLAGS += -fsanitize=address
18 CFLAGS += -DP_HAVE_MMAP=$(if $(NO_MMAP),0,1) \
19 -DP_HAVE_PTHREAD=$(if $(NO_PTHREAD),0,1) \
20 -DP_HAVE_POSIX_MEMALIGN=$(if $(NO_POSIX_MEMALIGN),0,1) \
26 # Suppress minor warnings for dependencies
27 deps/%: CFLAGS += -Wno-unused -Wno-unused-function
29 all: config.mak target_ plugins_
32 ifneq ($(wildcard config.mak),)
33 config.mak: ./configure
34 @echo $@ is out-of-date, running configure
35 @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
39 @echo "Please run ./configure before running make!"
46 -include Makefile.local
50 LDFLAGS += $(MAIN_LDFLAGS)
51 ifeq ($(DEBUG_ASAN), 1)
52 LDFLAGS += -static-libasan
54 EXTRA_LDFLAGS ?= -Wl,-Map=$@.map
55 LDLIBS += $(MAIN_LDLIBS)
61 OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/database.o \
62 libpcsxcore/decode_xa.o libpcsxcore/mdec.o \
63 libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
64 libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o \
65 libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o \
66 libpcsxcore/psxevents.o libpcsxcore/r3000a.o \
67 libpcsxcore/sio.o libpcsxcore/spu.o libpcsxcore/gpu.o
68 OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
71 #OBJS += libpcsxcore/debug.o libpcsxcore/socket.o libpcsxcore/disr3000a.o
75 CFLAGS += -Ideps/libchdr/deps/zlib-1.2.13
76 OBJS += deps/libchdr/deps/zlib-1.2.13/adler32.o \
77 deps/libchdr/deps/zlib-1.2.13/compress.o \
78 deps/libchdr/deps/zlib-1.2.13/crc32.o \
79 deps/libchdr/deps/zlib-1.2.13/deflate.o \
80 deps/libchdr/deps/zlib-1.2.13/gzclose.o \
81 deps/libchdr/deps/zlib-1.2.13/gzlib.o \
82 deps/libchdr/deps/zlib-1.2.13/gzread.o \
83 deps/libchdr/deps/zlib-1.2.13/gzwrite.o \
84 deps/libchdr/deps/zlib-1.2.13/infback.o \
85 deps/libchdr/deps/zlib-1.2.13/inffast.o \
86 deps/libchdr/deps/zlib-1.2.13/inflate.o \
87 deps/libchdr/deps/zlib-1.2.13/inftrees.o \
88 deps/libchdr/deps/zlib-1.2.13/trees.o \
89 deps/libchdr/deps/zlib-1.2.13/uncompr.o \
90 deps/libchdr/deps/zlib-1.2.13/zutil.o
91 deps/libchdr/deps/zlib-1.2.13/%.o: CFLAGS += -DHAVE_UNISTD_H
94 OBJS += libpcsxcore/gte_arm.o
96 ifeq "$(HAVE_NEON_ASM)" "1"
97 OBJS += libpcsxcore/gte_neon.o
99 libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
102 ifeq "$(DYNAREC)" "lightrec"
103 CFLAGS += -Ideps/lightning/include -Ideps/lightrec -Iinclude/lightning -Iinclude/lightrec \
104 -DLIGHTREC -DLIGHTREC_STATIC
105 LIGHTREC_CUSTOM_MAP ?= 0
106 LIGHTREC_CUSTOM_MAP_OBJ ?= libpcsxcore/lightrec/mem.o
107 LIGHTREC_THREADED_COMPILER ?= 0
108 CFLAGS += -DLIGHTREC_CUSTOM_MAP=$(LIGHTREC_CUSTOM_MAP) \
109 -DLIGHTREC_ENABLE_THREADED_COMPILER=$(LIGHTREC_THREADED_COMPILER)
110 ifeq ($(LIGHTREC_CUSTOM_MAP),1)
112 OBJS += $(LIGHTREC_CUSTOM_MAP_OBJ)
114 ifeq ($(NEED_SYSCONF),1)
115 OBJS += libpcsxcore/lightrec/sysconf.o
117 ifeq ($(LIGHTREC_THREADED_COMPILER),1)
118 OBJS += deps/lightrec/recompiler.o \
119 deps/lightrec/reaper.o
121 OBJS += deps/lightrec/tlsf/tlsf.o
122 OBJS += libpcsxcore/lightrec/plugin.o
123 OBJS += deps/lightning/lib/jit_disasm.o \
124 deps/lightning/lib/jit_memory.o \
125 deps/lightning/lib/jit_names.o \
126 deps/lightning/lib/jit_note.o \
127 deps/lightning/lib/jit_print.o \
128 deps/lightning/lib/jit_size.o \
129 deps/lightning/lib/lightning.o \
130 deps/lightrec/blockcache.o \
131 deps/lightrec/constprop.o \
132 deps/lightrec/disassembler.o \
133 deps/lightrec/emitter.o \
134 deps/lightrec/interpreter.o \
135 deps/lightrec/lightrec.o \
136 deps/lightrec/memmanager.o \
137 deps/lightrec/optimizer.o \
138 deps/lightrec/regcache.o
139 deps/lightning/%.o: CFLAGS += -DHAVE_MMAP=P_HAVE_MMAP
140 deps/lightning/%: CFLAGS += -w
141 deps/lightrec/%: CFLAGS += -w
142 libpcsxcore/lightrec/mem.o: CFLAGS += -D_GNU_SOURCE
143 ifeq ($(MMAP_WIN32),1)
144 CFLAGS += -Iinclude/mman -I deps/mman
145 OBJS += deps/mman/mman.o
147 else ifeq "$(DYNAREC)" "ari64"
148 OBJS += libpcsxcore/new_dynarec/new_dynarec.o
149 OBJS += libpcsxcore/new_dynarec/pcsxmem.o
151 OBJS += libpcsxcore/new_dynarec/linkage_arm.o
152 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c
153 else ifneq (,$(findstring $(ARCH),aarch64 arm64))
154 OBJS += libpcsxcore/new_dynarec/linkage_arm64.o
155 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm64.c
157 $(error no dynarec support for architecture $(ARCH))
160 CFLAGS += -DDRC_DISABLE
162 OBJS += libpcsxcore/new_dynarec/emu_if.o
163 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/pcsxmem_inline.c
165 libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
168 ifeq "$(BASE_ADDR_DYNAMIC)" "1"
169 libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_DYNAMIC=1
173 OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
174 plugins/dfsound/registers.o plugins/dfsound/spu.o \
175 plugins/dfsound/out.o plugins/dfsound/nullsnd.o
176 plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
179 OBJS += plugins/dfsound/arm_utils.o
181 ifeq "$(HAVE_C64_TOOLS)" "1"
182 plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP
183 plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
184 frontend/menu.o: CFLAGS += -DC64X_DSP
186 ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
187 plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
188 OBJS += plugins/dfsound/oss.o
190 ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
191 plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
192 OBJS += plugins/dfsound/alsa.o
195 ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
196 plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
197 OBJS += plugins/dfsound/sdl.o
199 ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
200 plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
201 OBJS += plugins/dfsound/pulseaudio.o
203 ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
204 plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
208 OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
209 ifeq "$(BUILTIN_GPU)" "neon"
211 OBJS += plugins/gpu_neon/psx_gpu_if.o
212 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
213 plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
214 frontend/menu.o frontend/plugin_lib.o: CFLAGS += -DBUILTIN_GPU_NEON
215 ifeq "$(HAVE_NEON_ASM)" "1"
216 OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
218 OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_simd.o
219 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DSIMD_BUILD
220 plugins/gpu_neon/psx_gpu/psx_gpu_simd.o: CFLAGS += -DSIMD_BUILD
223 ifeq "$(BUILTIN_GPU)" "peops"
224 CFLAGS += -DGPU_PEOPS
225 # note: code is not safe for strict-aliasing? (Castlevania problems)
226 plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
227 plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
228 OBJS += plugins/dfxvideo/gpulib_if.o
229 ifeq "$(THREAD_RENDERING)" "1"
230 CFLAGS += -DTHREAD_RENDERING
231 OBJS += plugins/gpulib/gpulib_thread_if.o
234 ifeq "$(BUILTIN_GPU)" "unai"
236 CFLAGS += -DUSE_GPULIB=1
237 #CFLAGS += -DINLINE="static __inline__"
238 #CFLAGS += -Dasm="__asm__ __volatile__"
239 OBJS += plugins/gpu_unai/gpulib_if.o
241 OBJS += plugins/gpu_unai/gpu_arm.o
243 ifeq "$(THREAD_RENDERING)" "1"
244 CFLAGS += -DTHREAD_RENDERING
245 OBJS += plugins/gpulib/gpulib_thread_if.o
247 plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3
252 OBJS += plugins/cdrcimg/cdrcimg.o
255 ifeq "$(HAVE_CHD)" "1"
256 CFLAGS += -Ideps/libchdr/include
257 CFLAGS += -Ideps/libchdr/include/libchdr
258 OBJS += deps/libchdr/deps/lzma-19.00/src/Alloc.o
259 OBJS += deps/libchdr/deps/lzma-19.00/src/Bra86.o
260 OBJS += deps/libchdr/deps/lzma-19.00/src/BraIA64.o
261 OBJS += deps/libchdr/deps/lzma-19.00/src/CpuArch.o
262 OBJS += deps/libchdr/deps/lzma-19.00/src/Delta.o
263 OBJS += deps/libchdr/deps/lzma-19.00/src/LzFind.o
264 OBJS += deps/libchdr/deps/lzma-19.00/src/Lzma86Dec.o
265 OBJS += deps/libchdr/deps/lzma-19.00/src/LzmaDec.o
266 OBJS += deps/libchdr/deps/lzma-19.00/src/LzmaEnc.o
267 OBJS += deps/libchdr/deps/lzma-19.00/src/Sort.o
268 OBJS += deps/libchdr/src/libchdr_bitstream.o
269 OBJS += deps/libchdr/src/libchdr_cdrom.o
270 OBJS += deps/libchdr/src/libchdr_chd.o
271 OBJS += deps/libchdr/src/libchdr_flac.o
272 OBJS += deps/libchdr/src/libchdr_huffman.o
273 CFLAGS += -Ideps/libchdr/deps/lzma-19.00/include
274 CFLAGS += -DHAVE_CHD -D_7ZIP_ST
279 OBJS += frontend/cspace.o
280 ifeq "$(HAVE_NEON_ASM)" "1"
281 OBJS += frontend/cspace_neon.o
282 frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565 -DHAVE_bgr888_to_x
285 OBJS += frontend/cspace_arm.o
286 frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565
290 ifeq "$(PLATFORM)" "generic"
291 OBJS += frontend/libpicofe/in_sdl.o
292 OBJS += frontend/libpicofe/plat_sdl.o
293 OBJS += frontend/libpicofe/plat_dummy.o
294 OBJS += frontend/libpicofe/linux/in_evdev.o
295 OBJS += frontend/plat_sdl.o
296 ifeq "$(HAVE_GLES)" "1"
297 OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
298 LDLIBS += $(LDLIBS_GLES)
299 frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
300 frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
301 frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
302 frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
307 ifeq "$(PLATFORM)" "pandora"
308 OBJS += frontend/libpicofe/pandora/plat.o
309 OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
310 OBJS += frontend/libpicofe/linux/in_evdev.o
311 OBJS += frontend/plat_pandora.o frontend/plat_omap.o
312 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
313 frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
317 ifeq "$(PLATFORM)" "caanoo"
318 OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
319 OBJS += frontend/libpicofe/gp2x/soc_pollux.o
320 OBJS += frontend/libpicofe/linux/in_evdev.o
321 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
322 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
326 ifeq "$(PLATFORM)" "maemo"
327 OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
330 LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
331 CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
332 CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
333 LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
335 ifeq "$(PLATFORM)" "libretro"
336 ifeq "$(USE_LIBRETRO_VFS)" "1"
337 OBJS += deps/libretro-common/compat/compat_posix_string.o
338 OBJS += deps/libretro-common/compat/fopen_utf8.o
339 OBJS += deps/libretro-common/compat/compat_strl.o
340 OBJS += deps/libretro-common/encodings/encoding_utf.o
341 OBJS += deps/libretro-common/file/file_path.o
342 OBJS += deps/libretro-common/streams/file_stream.o
343 OBJS += deps/libretro-common/streams/file_stream_transforms.o
344 OBJS += deps/libretro-common/string/stdstring.o
345 OBJS += deps/libretro-common/time/rtime.o
346 OBJS += deps/libretro-common/vfs/vfs_implementation.o
347 CFLAGS += -DUSE_LIBRETRO_VFS
349 OBJS += frontend/libretro.o
350 CFLAGS += -Ideps/libretro-common/include
351 CFLAGS += -DFRONTEND_SUPPORTS_RGB565
352 CFLAGS += -DHAVE_LIBRETRO
354 ifneq ($(DYNAREC),lightrec)
355 ifeq ($(MMAP_WIN32),1)
356 OBJS += libpcsxcore/memmap_win32.o
361 ifeq "$(USE_PLUGIN_LIB)" "1"
362 OBJS += frontend/plugin_lib.o
363 OBJS += frontend/libpicofe/linux/plat.o
364 OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
365 frontend/libpicofe/linux/plat.o: CFLAGS += -DNO_HOME_DIR
366 ifeq "$(HAVE_NEON_ASM)" "1"
367 OBJS += frontend/libpicofe/arm/neon_scale2x.o
368 OBJS += frontend/libpicofe/arm/neon_eagle2x.o
369 frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
370 frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
373 ifeq "$(USE_FRONTEND)" "1"
374 OBJS += frontend/menu.o
375 OBJS += frontend/libpicofe/input.o
376 frontend/menu.o: frontend/libpicofe/menu.c
377 ifeq "$(HAVE_TSLIB)" "1"
378 frontend/%.o: CFLAGS += -DHAVE_TSLIB
379 OBJS += frontend/pl_gun_ts.o
382 CFLAGS += -DNO_FRONTEND
386 OBJS += frontend/main.o frontend/plugin.o
387 frontend/main.o: CFLAGS += -DBUILTIN_GPU=$(BUILTIN_GPU)
389 frontend/menu.o frontend/main.o: frontend/revision.h
390 frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
392 frontend/libpicofe/%.c:
393 @echo "libpicofe module is missing, please run:"
394 @echo "git submodule init && git submodule update"
397 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
398 $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
400 frontend/revision.h: FORCE
401 @(git describe --always || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
402 @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
406 $(CC_AS) $(CFLAGS) -c $^ -o $@
409 $(CXX) $(CXXFLAGS) -c -o $@ $<
412 $(CC) $(CFLAGS) -c -o $@ $<
417 ifeq ($(STATIC_LINKING), 1)
420 $(CC_LINK) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
423 clean: $(PLAT_CLEAN) clean_plugins
424 $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
433 $(MAKE) -C plugins/gpulib/ clean
434 for dir in $(PLUGINS) ; do \
435 $(MAKE) -C $$(dirname $$dir) clean; done
441 .PHONY: all clean target_ plugins_ clean_plugins FORCE
443 # ----------- release -----------
445 VER ?= $(shell git describe --always HEAD)
447 ifeq "$(PLATFORM)" "generic"
448 OUT = pcsx_rearmed_$(VER)
450 rel: pcsx $(PLUGINS) \
451 frontend/pandora/skin readme.txt COPYING
453 mkdir -p $(OUT)/plugins
456 mv $(OUT)/*.so* $(OUT)/plugins/
457 zip -9 -r $(OUT).zip $(OUT)
460 ifeq "$(PLATFORM)" "pandora"
461 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
463 rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
464 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
465 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
469 sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
470 rm out/pcsx.pxml.templ
471 mv out/*.so out/plugins/
472 $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
475 ifeq "$(PLATFORM)" "caanoo"
476 PLAT_CLEAN = caanoo_clean
479 $(RM) frontend/320240/pollux_set
481 rel: pcsx $(PLUGINS) \
482 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
483 frontend/320240/pcsxb.png frontend/320240/skin \
484 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
485 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
486 frontend/320240/haptic_s.cfg \
489 mkdir -p out/pcsx_rearmed/plugins
490 cp -r $^ out/pcsx_rearmed/
491 mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
492 mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
493 mv out/pcsx_rearmed/pcsx_rearmed.ini out/
494 mkdir out/pcsx_rearmed/lib/
495 cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
496 mkdir out/pcsx_rearmed/bios/
497 cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *