1 # Makefile for PCSX ReARMed
3 # default stuff goes here, so that config can override
5 CFLAGS += -Wall -Iinclude -ffast-math
11 ifneq ($(DEBUG)$(DEBUG_SYMS), 00)
20 ifeq ($(DEBUG_ASAN), 1)
21 CFLAGS += -fsanitize=address
22 LDFLAGS += -fsanitize=address
23 #LDFLAGS += -static-libasan
25 ifeq ($(DEBUG_UBSAN), 1)
26 CFLAGS += -fsanitize=undefined -fno-sanitize=shift-base
27 LDFLAGS += -fsanitize=undefined
32 # Suppress minor warnings for dependencies
33 deps/%: CFLAGS += -Wno-unused -Wno-unused-function
35 all: config.mak target_ plugins_
38 ifneq ($(wildcard config.mak),)
39 config.mak: ./configure
40 @echo $@ is out-of-date, running configure
41 @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
45 @echo "Please run ./configure before running make!"
52 -include Makefile.local
56 LDFLAGS += $(MAIN_LDFLAGS)
57 #EXTRA_LDFLAGS ?= -Wl,-Map=$@.map # not on some linkers
58 LDLIBS += $(MAIN_LDLIBS)
63 ifneq ($(NO_FSECTIONS), 1)
64 CFLAGS += -ffunction-sections -fdata-sections
65 ifeq ($(GNU_LINKER),1)
66 FSECTIONS_LDFLAGS ?= -Wl,--gc-sections
67 LDFLAGS += $(FSECTIONS_LDFLAGS)
70 CFLAGS += -DP_HAVE_MMAP=$(if $(NO_MMAP),0,1) \
71 -DP_HAVE_PTHREAD=$(if $(NO_PTHREAD),0,1) \
72 -DP_HAVE_POSIX_MEMALIGN=$(if $(NO_POSIX_MEMALIGN),0,1) \
77 OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cdrom-async.o \
78 libpcsxcore/cheat.o libpcsxcore/database.o \
79 libpcsxcore/decode_xa.o libpcsxcore/mdec.o \
80 libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
81 libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o \
82 libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o \
83 libpcsxcore/psxevents.o libpcsxcore/r3000a.o \
84 libpcsxcore/sio.o libpcsxcore/spu.o libpcsxcore/gpu.o
85 OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
86 #OBJS += libpcsxcore/debug.o libpcsxcore/socket.o libpcsxcore/disr3000a.o
89 ZLIB_DIR = deps/libchdr/deps/zlib-1.3.1
90 CFLAGS += -I$(ZLIB_DIR)
91 OBJS += $(ZLIB_DIR)/adler32.o \
92 $(ZLIB_DIR)/compress.o \
94 $(ZLIB_DIR)/deflate.o \
95 $(ZLIB_DIR)/gzclose.o \
97 $(ZLIB_DIR)/gzread.o \
98 $(ZLIB_DIR)/gzwrite.o \
99 $(ZLIB_DIR)/infback.o \
100 $(ZLIB_DIR)/inffast.o \
101 $(ZLIB_DIR)/inflate.o \
102 $(ZLIB_DIR)/inftrees.o \
103 $(ZLIB_DIR)/trees.o \
104 $(ZLIB_DIR)/uncompr.o \
106 $(ZLIB_DIR)/%.o: CFLAGS += -DHAVE_UNISTD_H
110 OBJS += libpcsxcore/gte_arm.o
112 ifeq "$(HAVE_NEON_ASM)" "1"
113 OBJS += libpcsxcore/gte_neon.o
115 libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
117 ifeq ($(MMAP_WIN32),1)
118 CFLAGS += -Iinclude/mman -Ideps/mman
119 OBJS += deps/mman/mman.o
121 ifeq "$(USE_ASYNC_CDROM)" "1"
122 libpcsxcore/cdrom-async.o: CFLAGS += -DUSE_ASYNC_CDROM
123 frontend/libretro.o: CFLAGS += -DUSE_ASYNC_CDROM
124 frontend/menu.o: CFLAGS += -DUSE_ASYNC_CDROM
129 ifeq "$(DYNAREC)" "lightrec"
130 CFLAGS += -Ideps/lightning/include -Ideps/lightrec -Iinclude/lightning -Iinclude/lightrec \
131 -DLIGHTREC -DLIGHTREC_STATIC
132 ifeq ($(LIGHTREC_DEBUG),1)
133 deps/lightrec/%.o: CFLAGS += -DLOG_LEVEL=DEBUG_L
134 libpcsxcore/lightrec/plugin.o: CFLAGS += -DLIGHTREC_DEBUG=1
135 frontend/main.o: CFLAGS += -DLIGHTREC_DEBUG=1
136 deps/lightning/%.o: CFLAGS += -DDISASSEMBLER=1 -DBINUTILS_2_38=1 -DBINUTILS_2_29=1 \
137 -DHAVE_DISASSEMBLE_INIT_FOR_TARGET=1 -DPACKAGE_VERSION=1
138 LDFLAGS += -lopcodes -lbfd
140 LIGHTREC_CUSTOM_MAP ?= 0
141 LIGHTREC_CUSTOM_MAP_OBJ ?= libpcsxcore/lightrec/mem.o
142 LIGHTREC_THREADED_COMPILER ?= 0
143 LIGHTREC_CODE_INV ?= 0
144 CFLAGS += -DLIGHTREC_CUSTOM_MAP=$(LIGHTREC_CUSTOM_MAP) \
145 -DLIGHTREC_CODE_INV=$(LIGHTREC_CODE_INV) \
146 -DLIGHTREC_ENABLE_THREADED_COMPILER=$(LIGHTREC_THREADED_COMPILER) \
147 -DLIGHTREC_ENABLE_DISASSEMBLER=$(or $(LIGHTREC_DEBUG),0) \
148 -DLIGHTREC_NO_DEBUG=$(if $(LIGHTREC_DEBUG),0,1)
149 ifeq ($(LIGHTREC_CUSTOM_MAP),1)
151 OBJS += $(LIGHTREC_CUSTOM_MAP_OBJ)
153 ifeq ($(NEED_SYSCONF),1)
154 OBJS += libpcsxcore/lightrec/sysconf.o
156 ifeq ($(LIGHTREC_THREADED_COMPILER),1)
157 OBJS += deps/lightrec/recompiler.o \
158 deps/lightrec/reaper.o
160 OBJS += deps/lightrec/tlsf/tlsf.o
161 OBJS += libpcsxcore/lightrec/plugin.o
162 OBJS += deps/lightning/lib/jit_disasm.o \
163 deps/lightning/lib/jit_memory.o \
164 deps/lightning/lib/jit_names.o \
165 deps/lightning/lib/jit_note.o \
166 deps/lightning/lib/jit_print.o \
167 deps/lightning/lib/jit_size.o \
168 deps/lightning/lib/lightning.o \
169 deps/lightrec/blockcache.o \
170 deps/lightrec/constprop.o \
171 deps/lightrec/disassembler.o \
172 deps/lightrec/emitter.o \
173 deps/lightrec/interpreter.o \
174 deps/lightrec/lightrec.o \
175 deps/lightrec/memmanager.o \
176 deps/lightrec/optimizer.o \
177 deps/lightrec/regcache.o
178 deps/lightning/%.o: CFLAGS += -DHAVE_MMAP=P_HAVE_MMAP
179 deps/lightning/%: CFLAGS += -Wno-uninitialized
180 deps/lightrec/%: CFLAGS += -Wno-uninitialized
181 libpcsxcore/lightrec/mem.o: CFLAGS += -D_GNU_SOURCE
182 ifeq ($(MMAP_WIN32),1)
183 deps/lightning/lib/lightning.o: CFLAGS += -Dmprotect=_mprotect # deps/mman
184 deps/lightning/lib/jit_print.o: CFLAGS += -w
186 else ifeq "$(DYNAREC)" "ari64"
187 OBJS += libpcsxcore/new_dynarec/new_dynarec.o
188 OBJS += libpcsxcore/new_dynarec/pcsxmem.o
190 OBJS += libpcsxcore/new_dynarec/linkage_arm.o
191 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c
192 else ifneq (,$(findstring $(ARCH),aarch64 arm64))
193 OBJS += libpcsxcore/new_dynarec/linkage_arm64.o
194 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm64.c
196 $(error no dynarec support for architecture $(ARCH))
198 ifeq "$(NDRC_THREAD)" "1"
199 libpcsxcore/new_dynarec/new_dynarec.o: CFLAGS += -DNDRC_THREAD
200 libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -DNDRC_THREAD
201 frontend/libretro.o: CFLAGS += -DNDRC_THREAD
205 CFLAGS += -DDRC_DISABLE
207 OBJS += libpcsxcore/new_dynarec/emu_if.o
208 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/pcsxmem_inline.c
210 libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
213 ifeq "$(BASE_ADDR_DYNAMIC)" "1"
214 libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_DYNAMIC=1
218 OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
219 plugins/dfsound/registers.o plugins/dfsound/spu.o \
220 plugins/dfsound/out.o plugins/dfsound/nullsnd.o
221 plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
224 OBJS += plugins/dfsound/arm_utils.o
226 ifeq "$(HAVE_C64_TOOLS)" "1"
227 plugins/dfsound/%.o: CFLAGS += -DC64X_DSP -DWANT_THREAD_CODE
228 plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
229 frontend/menu.o: CFLAGS += -DC64X_DSP
231 ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
232 plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
233 OBJS += plugins/dfsound/oss.o
235 ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
236 plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
237 OBJS += plugins/dfsound/alsa.o
240 ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
241 plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
242 OBJS += plugins/dfsound/sdl.o
244 ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
245 plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
246 OBJS += plugins/dfsound/pulseaudio.o
248 ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
249 plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
252 # supported gpu list in menu
253 ifeq "$(HAVE_NEON_GPU)" "1"
254 frontend/menu.o: CFLAGS += -DGPU_NEON
256 ifeq "$(HAVE_GLES)" "1"
257 frontend/menu.o: CFLAGS += -DHAVE_GLES
261 OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o plugins/gpulib/prim.o
262 ifeq "$(BUILTIN_GPU)" "neon"
264 OBJS += plugins/gpu_neon/psx_gpu_if.o
265 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
266 plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
267 frontend/menu.o frontend/plugin_lib.o: CFLAGS += -DBUILTIN_GPU_NEON
268 ifeq "$(HAVE_NEON_ASM)" "1"
269 OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
271 OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_simd.o
272 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DSIMD_BUILD
273 plugins/gpu_neon/psx_gpu/psx_gpu_simd.o: CFLAGS += -DSIMD_BUILD
276 ifeq "$(BUILTIN_GPU)" "peops"
277 CFLAGS += -DGPU_PEOPS
278 # note: code is not safe for strict-aliasing? (Castlevania problems)
279 plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
280 plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
281 frontend/menu.o frontend/plugin_lib.o: CFLAGS += -DBUILTIN_GPU_PEOPS
282 OBJS += plugins/dfxvideo/gpulib_if.o
283 ifeq "$(THREAD_RENDERING)" "1"
284 CFLAGS += -DTHREAD_RENDERING
285 OBJS += plugins/gpulib/gpulib_thread_if.o
289 ifeq "$(BUILTIN_GPU)" "unai"
291 CFLAGS += -DUSE_GPULIB=1
292 OBJS += plugins/gpu_unai/gpulib_if.o
294 OBJS += plugins/gpu_unai/gpu_arm.o
296 ifeq "$(THREAD_RENDERING)" "1"
297 CFLAGS += -DTHREAD_RENDERING
298 OBJS += plugins/gpulib/gpulib_thread_if.o
300 ifneq "$(GPU_UNAI_NO_OLD)" "1"
301 OBJS += plugins/gpu_unai/old/if.o
303 CFLAGS += -DGPU_UNAI_NO_OLD
305 plugins/gpu_unai/gpulib_if.o: plugins/gpu_unai/*.h
306 plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -DUSE_GPULIB=1
307 frontend/menu.o frontend/plugin_lib.o: CFLAGS += -DBUILTIN_GPU_UNAI
309 plugins/gpu_unai/gpulib_if.o \
310 plugins/gpu_unai/old/if.o: CFLAGS += -O3
316 ifeq "$(HAVE_CHD)" "1"
318 LCHDR_LZMA = $(LCHDR)/deps/lzma-24.05
319 LCHDR_ZSTD = $(LCHDR)/deps/zstd-1.5.6/lib
320 OBJS += $(LCHDR)/src/libchdr_bitstream.o
321 OBJS += $(LCHDR)/src/libchdr_cdrom.o
322 OBJS += $(LCHDR)/src/libchdr_chd.o
323 OBJS += $(LCHDR)/src/libchdr_flac.o
324 OBJS += $(LCHDR)/src/libchdr_huffman.o
325 $(LCHDR)/src/%.o: CFLAGS += -Wno-unused -Wno-maybe-uninitialized -std=gnu11
326 OBJS += $(LCHDR_LZMA)/src/Alloc.o
327 OBJS += $(LCHDR_LZMA)/src/CpuArch.o
328 OBJS += $(LCHDR_LZMA)/src/Delta.o
329 OBJS += $(LCHDR_LZMA)/src/LzFind.o
330 OBJS += $(LCHDR_LZMA)/src/LzmaDec.o
331 OBJS += $(LCHDR_LZMA)/src/LzmaEnc.o
332 OBJS += $(LCHDR_LZMA)/src/Sort.o
333 $(LCHDR_LZMA)/src/%.o: CFLAGS += -Wno-unused -DZ7_ST -I$(LCHDR_LZMA)/include
334 $(LCHDR)/src/%.o: CFLAGS += -I$(LCHDR_LZMA)/include
335 OBJS += $(LCHDR_ZSTD)/common/entropy_common.o
336 OBJS += $(LCHDR_ZSTD)/common/error_private.o
337 OBJS += $(LCHDR_ZSTD)/common/fse_decompress.o
338 OBJS += $(LCHDR_ZSTD)/common/xxhash.o
339 OBJS += $(LCHDR_ZSTD)/common/zstd_common.o
340 OBJS += $(LCHDR_ZSTD)/decompress/huf_decompress.o
341 OBJS += $(LCHDR_ZSTD)/decompress/huf_decompress_amd64.o
342 OBJS += $(LCHDR_ZSTD)/decompress/zstd_ddict.o
343 OBJS += $(LCHDR_ZSTD)/decompress/zstd_decompress_block.o
344 OBJS += $(LCHDR_ZSTD)/decompress/zstd_decompress.o
345 $(LCHDR_ZSTD)/common/%.o \
346 $(LCHDR_ZSTD)/decompress/%.o: CFLAGS += -I$(LCHDR_ZSTD)
347 $(LCHDR)/src/%.o: CFLAGS += -I$(LCHDR_ZSTD)
348 libpcsxcore/cdriso.o: CFLAGS += -Wno-unused-function
349 CFLAGS += -DHAVE_CHD -I$(LCHDR)/include
353 OBJS += frontend/cspace.o
354 ifeq "$(HAVE_NEON_ASM)" "1"
355 OBJS += frontend/cspace_neon.o
356 frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565 -DHAVE_bgr888_to_x
359 OBJS += frontend/cspace_arm.o
360 frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565
364 ifeq "$(PLATFORM)" "generic"
365 OBJS += frontend/libpicofe/in_sdl.o
366 #OBJS += frontend/libpicofe/plat_sdl.o
367 OBJS += frontend/libpicofe/plat_dummy.o
368 OBJS += frontend/plat_sdl.o
369 frontend/plat_sdl.o frontend/libpicofe/plat_sdl.o: CFLAGS += -DSDL_OVERLAY_2X
370 frontend/menu.o: CFLAGS += -DSDL_OVERLAY_2X -DMENU_SHOW_VARSCALER=1
371 ifeq "$(HAVE_EVDEV)" "1"
372 OBJS += frontend/libpicofe/linux/in_evdev.o
374 ifeq "$(HAVE_GLES)" "1"
375 OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
376 OBJS += frontend/libpicofe/gl_loader.o
377 #LDLIBS += $(LDLIBS_GLES) # loaded dynamically now
378 frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
379 frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
380 frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
381 frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
386 ifeq "$(PLATFORM)" "pandora"
387 OBJS += frontend/libpicofe/pandora/plat.o
388 OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
389 OBJS += frontend/libpicofe/linux/in_evdev.o
390 OBJS += frontend/plat_pandora.o frontend/plat_omap.o
391 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
392 frontend/main.o frontend/plugin_lib.o: CFLAGS += -DPANDORA
393 frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
398 ifeq "$(PLATFORM)" "caanoo"
399 OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
400 OBJS += frontend/libpicofe/gp2x/soc_pollux.o
401 OBJS += frontend/libpicofe/linux/in_evdev.o
402 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
403 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
407 ifeq "$(PLATFORM)" "miyoo"
409 OBJS += frontend/libpicofe/in_sdl.o
410 OBJS += frontend/libpicofe/linux/in_evdev.o
411 OBJS += frontend/libpicofe/plat_dummy.o
412 OBJS += frontend/plat_sdl.o
413 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_miyoo.h
417 ifeq "$(PLATFORM)" "maemo"
418 OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
421 LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
422 CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
423 CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
424 LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
426 ifeq "$(PLATFORM)" "libretro"
427 ifneq "$(HAVE_PHYSICAL_CDROM)$(USE_LIBRETRO_VFS)" "00"
428 OBJS += deps/libretro-common/compat/compat_strl.o
429 OBJS += deps/libretro-common/file/file_path.o
430 OBJS += deps/libretro-common/string/stdstring.o
431 OBJS += deps/libretro-common/vfs/vfs_implementation.o
433 ifeq "$(HAVE_PHYSICAL_CDROM)" "1"
434 OBJS += frontend/libretro-cdrom.o
435 OBJS += deps/libretro-common/lists/string_list.o
436 OBJS += deps/libretro-common/memmap/memalign.o
437 OBJS += deps/libretro-common/vfs/vfs_implementation_cdrom.o
438 CFLAGS += -DHAVE_CDROM
440 ifeq "$(USE_LIBRETRO_VFS)" "1"
441 OBJS += deps/libretro-common/compat/compat_posix_string.o
442 OBJS += deps/libretro-common/compat/fopen_utf8.o
443 OBJS += deps/libretro-common/encodings/encoding_utf.o
444 OBJS += deps/libretro-common/streams/file_stream.o
445 OBJS += deps/libretro-common/streams/file_stream_transforms.o
446 OBJS += deps/libretro-common/time/rtime.o
447 CFLAGS += -DUSE_LIBRETRO_VFS
449 OBJS += frontend/libretro.o
450 CFLAGS += -DHAVE_LIBRETRO
451 INC_LIBRETRO_COMMON := 1
453 endif # $(PLATFORM) == "libretro"
455 ifeq "$(USE_RTHREADS)" "1"
456 OBJS += frontend/libretro-rthreads.o
457 OBJS += deps/libretro-common/features/features_cpu.o
458 frontend/main.o: CFLAGS += -DHAVE_RTHREADS
459 INC_LIBRETRO_COMMON := 1
461 ifeq "$(INC_LIBRETRO_COMMON)" "1"
462 CFLAGS += -Ideps/libretro-common/include
465 ifeq "$(USE_PLUGIN_LIB)" "1"
466 OBJS += frontend/plugin_lib.o
467 OBJS += frontend/libpicofe/linux/plat.o
468 OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
469 frontend/libpicofe/linux/plat.o: CFLAGS += -DNO_HOME_DIR
470 ifeq "$(HAVE_NEON_ASM)" "1"
471 OBJS += frontend/libpicofe/arm/neon_scale2x.o
472 OBJS += frontend/libpicofe/arm/neon_eagle2x.o
473 frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
474 frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
477 ifeq "$(USE_FRONTEND)" "1"
478 OBJS += frontend/menu.o
479 OBJS += frontend/libpicofe/input.o
480 frontend/libpicofe/input.o: CFLAGS += -Wno-array-bounds
481 frontend/menu.o: frontend/libpicofe/menu.c
482 ifeq "$(HAVE_TSLIB)" "1"
483 frontend/%.o: CFLAGS += -DHAVE_TSLIB
484 OBJS += frontend/pl_gun_ts.o
487 CFLAGS += -DNO_FRONTEND
491 OBJS += frontend/main.o frontend/plugin.o
492 frontend/main.o libpcsxcore/misc.o: CFLAGS += -DBUILTIN_GPU=$(BUILTIN_GPU)
494 frontend/menu.o frontend/main.o: include/revision.h
495 frontend/plat_sdl.o frontend/libretro.o: include/revision.h
496 libpcsxcore/misc.o: include/revision.h
498 CFLAGS += $(CFLAGS_LAST)
500 frontend/libpicofe/%.c:
501 @echo "libpicofe module is missing, please run:"
502 @echo "git submodule init && git submodule update"
505 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
506 $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
508 include/revision.h: FORCE
509 @(git describe --always || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
510 @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
514 $(CC_AS) $(CFLAGS) -c $^ -o $@
520 ifeq ($(PARTIAL_LINKING), 1)
521 $(LD) -o $(basename $(TARGET))1.o -r --gc-sections $(addprefix -u ,$(shell cat frontend/libretro-extern)) $(addprefix -u ,$(EXTRA_EXTERN_SYMS)) $^
522 $(OBJCOPY) --keep-global-symbols=frontend/libretro-extern $(addprefix -G ,$(EXTRA_EXTERN_SYMS)) $(basename $(TARGET))1.o $(basename $(TARGET)).o
523 $(AR) rcs $@ $(basename $(TARGET)).o
524 else ifeq ($(STATIC_LINKING), 1)
527 $(CC_LINK) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
530 clean: $(PLAT_CLEAN) clean_plugins
531 $(RM) $(TARGET) *.o $(OBJS) $(TARGET).map include/revision.h
536 plugins/gpulib/gpulib.$(ARCH).a:
537 $(MAKE) -C plugins/gpulib/
539 $(PLUGINS): plugins/gpulib/gpulib.$(ARCH).a
543 $(MAKE) -C plugins/gpulib/ clean
544 for dir in $(PLUGINS) ; do \
545 $(MAKE) -C $$(dirname $$dir) clean; done
551 .PHONY: all clean target_ plugins_ clean_plugins FORCE
553 ifneq "$(PLATFORM)" "pandora"
555 $(warning warning: CPATH is defined)
559 # ----------- release -----------
561 VER ?= $(shell git describe --always HEAD)
563 ifeq "$(PLATFORM)" "generic"
564 OUT = pcsx_rearmed_$(VER)
566 rel: pcsx $(PLUGINS) \
567 frontend/pandora/skin readme.txt COPYING
569 mkdir -p $(OUT)/plugins
572 -mv $(OUT)/*.so* $(OUT)/plugins/
573 zip -9 -r $(OUT).zip $(OUT)
576 ifeq "$(PLATFORM)" "pandora"
577 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
579 rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
580 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
581 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
585 sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
586 rm out/pcsx.pxml.templ
587 -mv out/*.so out/plugins/
588 $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
591 ifeq "$(PLATFORM)" "miyoo"
593 rel: pcsx $(PLUGINS) \
594 frontend/320240/pcsx26.png \
595 frontend/320240/skin \
598 mkdir -p out/pcsx_rearmed/plugins
599 cp -r $^ out/pcsx_rearmed/
600 -mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
601 mkdir out/pcsx_rearmed/lib/
602 mkdir out/pcsx_rearmed/bios/
603 cd out && zip -9 -r ../pcsx_rearmed_$(VER)_miyoo.zip *
606 VERSION="$(VER)" gm2xpkg -q -f miyoo/pkg.cfg
607 mv pcsx.ipk pcsx_rearmed.ipk
610 ifeq "$(PLATFORM)" "caanoo"
611 PLAT_CLEAN = caanoo_clean
614 $(RM) frontend/320240/pollux_set
616 rel: pcsx $(PLUGINS) \
617 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
618 frontend/320240/pcsxb.png frontend/320240/skin \
619 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
620 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
621 frontend/320240/haptic_s.cfg \
624 mkdir -p out/pcsx_rearmed/plugins
625 cp -r $^ out/pcsx_rearmed/
626 -mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
627 mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
628 mv out/pcsx_rearmed/pcsx_rearmed.ini out/
629 mkdir out/pcsx_rearmed/lib/
630 cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
631 mkdir out/pcsx_rearmed/bios/
632 cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *