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)" "maemo"
408 OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
411 LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
412 CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
413 CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
414 LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
416 ifeq "$(PLATFORM)" "libretro"
417 ifneq "$(HAVE_PHYSICAL_CDROM)$(USE_LIBRETRO_VFS)" "00"
418 OBJS += deps/libretro-common/compat/compat_strl.o
419 OBJS += deps/libretro-common/file/file_path.o
420 OBJS += deps/libretro-common/string/stdstring.o
421 OBJS += deps/libretro-common/vfs/vfs_implementation.o
423 ifeq "$(HAVE_PHYSICAL_CDROM)" "1"
424 OBJS += frontend/libretro-cdrom.o
425 OBJS += deps/libretro-common/lists/string_list.o
426 OBJS += deps/libretro-common/memmap/memalign.o
427 OBJS += deps/libretro-common/vfs/vfs_implementation_cdrom.o
428 CFLAGS += -DHAVE_CDROM
430 ifeq "$(USE_LIBRETRO_VFS)" "1"
431 OBJS += deps/libretro-common/compat/compat_posix_string.o
432 OBJS += deps/libretro-common/compat/fopen_utf8.o
433 OBJS += deps/libretro-common/encodings/encoding_utf.o
434 OBJS += deps/libretro-common/streams/file_stream.o
435 OBJS += deps/libretro-common/streams/file_stream_transforms.o
436 OBJS += deps/libretro-common/time/rtime.o
437 CFLAGS += -DUSE_LIBRETRO_VFS
439 OBJS += frontend/libretro.o
440 CFLAGS += -DHAVE_LIBRETRO
441 INC_LIBRETRO_COMMON := 1
443 endif # $(PLATFORM) == "libretro"
445 ifeq "$(USE_RTHREADS)" "1"
446 OBJS += frontend/libretro-rthreads.o
447 OBJS += deps/libretro-common/features/features_cpu.o
448 frontend/main.o: CFLAGS += -DHAVE_RTHREADS
449 INC_LIBRETRO_COMMON := 1
451 ifeq "$(INC_LIBRETRO_COMMON)" "1"
452 CFLAGS += -Ideps/libretro-common/include
455 ifeq "$(USE_PLUGIN_LIB)" "1"
456 OBJS += frontend/plugin_lib.o
457 OBJS += frontend/libpicofe/linux/plat.o
458 OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
459 frontend/libpicofe/linux/plat.o: CFLAGS += -DNO_HOME_DIR
460 ifeq "$(HAVE_NEON_ASM)" "1"
461 OBJS += frontend/libpicofe/arm/neon_scale2x.o
462 OBJS += frontend/libpicofe/arm/neon_eagle2x.o
463 frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
464 frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
467 ifeq "$(USE_FRONTEND)" "1"
468 OBJS += frontend/menu.o
469 OBJS += frontend/libpicofe/input.o
470 frontend/libpicofe/input.o: CFLAGS += -Wno-array-bounds
471 frontend/menu.o: frontend/libpicofe/menu.c
472 ifeq "$(HAVE_TSLIB)" "1"
473 frontend/%.o: CFLAGS += -DHAVE_TSLIB
474 OBJS += frontend/pl_gun_ts.o
477 CFLAGS += -DNO_FRONTEND
481 OBJS += frontend/main.o frontend/plugin.o
482 frontend/main.o libpcsxcore/misc.o: CFLAGS += -DBUILTIN_GPU=$(BUILTIN_GPU)
484 frontend/menu.o frontend/main.o: include/revision.h
485 frontend/plat_sdl.o frontend/libretro.o: include/revision.h
486 libpcsxcore/misc.o: include/revision.h
488 CFLAGS += $(CFLAGS_LAST)
490 frontend/libpicofe/%.c:
491 @echo "libpicofe module is missing, please run:"
492 @echo "git submodule init && git submodule update"
495 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
496 $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
498 include/revision.h: FORCE
499 @(git describe --always || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
500 @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
504 $(CC_AS) $(CFLAGS) -c $^ -o $@
510 ifeq ($(PARTIAL_LINKING), 1)
511 $(LD) -o $(basename $(TARGET))1.o -r --gc-sections $(addprefix -u ,$(shell cat frontend/libretro-extern)) $(addprefix -u ,$(EXTRA_EXTERN_SYMS)) $^
512 $(OBJCOPY) --keep-global-symbols=frontend/libretro-extern $(addprefix -G ,$(EXTRA_EXTERN_SYMS)) $(basename $(TARGET))1.o $(basename $(TARGET)).o
513 $(AR) rcs $@ $(basename $(TARGET)).o
514 else ifeq ($(STATIC_LINKING), 1)
517 $(CC_LINK) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
520 clean: $(PLAT_CLEAN) clean_plugins
521 $(RM) $(TARGET) *.o $(OBJS) $(TARGET).map include/revision.h
526 plugins/gpulib/gpulib.$(ARCH).a:
527 $(MAKE) -C plugins/gpulib/
529 $(PLUGINS): plugins/gpulib/gpulib.$(ARCH).a
533 $(MAKE) -C plugins/gpulib/ clean
534 for dir in $(PLUGINS) ; do \
535 $(MAKE) -C $$(dirname $$dir) clean; done
541 .PHONY: all clean target_ plugins_ clean_plugins FORCE
543 ifneq "$(PLATFORM)" "pandora"
545 $(warning warning: CPATH is defined)
549 # ----------- release -----------
551 VER ?= $(shell git describe --always HEAD)
553 ifeq "$(PLATFORM)" "generic"
554 OUT = pcsx_rearmed_$(VER)
556 rel: pcsx $(PLUGINS) \
557 frontend/pandora/skin readme.txt COPYING
559 mkdir -p $(OUT)/plugins
562 -mv $(OUT)/*.so* $(OUT)/plugins/
563 zip -9 -r $(OUT).zip $(OUT)
566 ifeq "$(PLATFORM)" "pandora"
567 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
569 rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
570 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
571 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
575 sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
576 rm out/pcsx.pxml.templ
577 -mv out/*.so out/plugins/
578 $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
581 ifeq "$(PLATFORM)" "caanoo"
582 PLAT_CLEAN = caanoo_clean
585 $(RM) frontend/320240/pollux_set
587 rel: pcsx $(PLUGINS) \
588 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
589 frontend/320240/pcsxb.png frontend/320240/skin \
590 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
591 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
592 frontend/320240/haptic_s.cfg \
595 mkdir -p out/pcsx_rearmed/plugins
596 cp -r $^ out/pcsx_rearmed/
597 -mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
598 mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
599 mv out/pcsx_rearmed/pcsx_rearmed.ini out/
600 mkdir out/pcsx_rearmed/lib/
601 cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
602 mkdir out/pcsx_rearmed/bios/
603 cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *