cdrom: attempt to improve reset
[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 ifeq ($(DEBUG_ASAN), 1)
16 CFLAGS += -fsanitize=address
17 endif
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) \
21           -DDISABLE_MEM_LUTS=0
22 CXXFLAGS += $(CFLAGS)
23 #DRC_DBG = 1
24 #PCNT = 1
25
26 # Suppress minor warnings for dependencies
27 deps/%: CFLAGS += -Wno-unused -Wno-unused-function
28
29 all: config.mak target_ plugins_
30
31 ifndef NO_CONFIG_MAK
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
36 include config.mak
37 else
38 config.mak:
39         @echo "Please run ./configure before running make!"
40         @exit 1
41 endif
42 else # NO_CONFIG_MAK
43 config.mak:
44 endif
45
46 -include Makefile.local
47
48 CC_LINK ?= $(CC)
49 CC_AS ?= $(CC)
50 LDFLAGS += $(MAIN_LDFLAGS)
51 ifeq ($(DEBUG_ASAN), 1)
52 LDFLAGS += -static-libasan
53 endif
54 EXTRA_LDFLAGS ?= -Wl,-Map=$@.map
55 LDLIBS += $(MAIN_LDLIBS)
56 ifdef PCNT
57 CFLAGS += -DPCNT
58 endif
59
60 # core
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
69
70 ifeq ($(DEBUG), 1)
71 #OBJS += libpcsxcore/debug.o    libpcsxcore/socket.o libpcsxcore/disr3000a.o
72 endif
73
74 ifeq ($(WANT_ZLIB),1)
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
92 endif
93 ifeq "$(ARCH)" "arm"
94 OBJS += libpcsxcore/gte_arm.o
95 endif
96 ifeq "$(HAVE_NEON_ASM)" "1"
97 OBJS += libpcsxcore/gte_neon.o
98 endif
99 libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
100
101 # dynarec
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)
111 LDLIBS += -lrt
112 OBJS += $(LIGHTREC_CUSTOM_MAP_OBJ)
113 endif
114 ifeq ($(NEED_SYSCONF),1)
115 OBJS += libpcsxcore/lightrec/sysconf.o
116 endif
117 ifeq ($(LIGHTREC_THREADED_COMPILER),1)
118 OBJS += deps/lightrec/recompiler.o \
119         deps/lightrec/reaper.o
120 endif
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
146 endif
147 else ifeq "$(DYNAREC)" "ari64"
148 OBJS += libpcsxcore/new_dynarec/new_dynarec.o
149 OBJS += libpcsxcore/new_dynarec/pcsxmem.o
150  ifeq "$(ARCH)" "arm"
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
156  else
157  $(error no dynarec support for architecture $(ARCH))
158  endif
159 else
160 CFLAGS += -DDRC_DISABLE
161 endif
162 OBJS += libpcsxcore/new_dynarec/emu_if.o
163 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/pcsxmem_inline.c
164 ifdef DRC_DBG
165 libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
166 CFLAGS += -DDRC_DBG
167 endif
168 ifeq "$(BASE_ADDR_DYNAMIC)" "1"
169 libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_DYNAMIC=1
170 endif
171
172 # spu
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 \
177         plugins/dfsound/xa.c
178 ifeq "$(ARCH)" "arm"
179 OBJS += plugins/dfsound/arm_utils.o
180 endif
181 ifeq "$(HAVE_C64_TOOLS)" "1"
182 plugins/dfsound/%.o: CFLAGS += -DC64X_DSP -DWANT_THREAD_CODE
183 plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
184 frontend/menu.o: CFLAGS += -DC64X_DSP
185 endif
186 ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
187 plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
188 OBJS += plugins/dfsound/oss.o
189 endif
190 ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
191 plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
192 OBJS += plugins/dfsound/alsa.o
193 LDLIBS += -lasound
194 endif
195 ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
196 plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
197 OBJS += plugins/dfsound/sdl.o
198 endif
199 ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
200 plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
201 OBJS += plugins/dfsound/pulseaudio.o
202 endif
203 ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
204 plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
205 endif
206
207 # builtin gpu
208 OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
209 ifeq "$(BUILTIN_GPU)" "neon"
210 CFLAGS += -DGPU_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
217  else
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
221  endif
222 endif
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
232 endif
233 endif
234 ifeq "$(BUILTIN_GPU)" "unai"
235 CFLAGS += -DGPU_UNAI
236 CFLAGS += -DUSE_GPULIB=1
237 #CFLAGS += -DINLINE="static __inline__"
238 #CFLAGS += -Dasm="__asm__ __volatile__"
239 OBJS += plugins/gpu_unai/gpulib_if.o
240 ifeq "$(ARCH)" "arm"
241 OBJS += plugins/gpu_unai/gpu_arm.o
242 endif
243 ifeq "$(THREAD_RENDERING)" "1"
244 CFLAGS += -DTHREAD_RENDERING
245 OBJS += plugins/gpulib/gpulib_thread_if.o
246 endif
247 plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3 
248 CC_LINK = $(CXX)
249 endif
250
251 # cdrcimg
252 OBJS += plugins/cdrcimg/cdrcimg.o
253
254 # libchdr
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
275 LDFLAGS += -lm
276 endif
277
278 # frontend/gui
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
283 else
284 ifeq "$(ARCH)" "arm"
285 OBJS += frontend/cspace_arm.o
286 frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565
287 endif
288 endif
289
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)
303 endif
304 USE_PLUGIN_LIB = 1
305 USE_FRONTEND = 1
306 endif
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
314 USE_PLUGIN_LIB = 1
315 USE_FRONTEND = 1
316 CFLAGS += -gdwarf-3 -ffunction-sections -fdata-sections
317 LDFLAGS += -Wl,--gc-sections
318 endif
319 ifeq "$(PLATFORM)" "caanoo"
320 OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
321 OBJS += frontend/libpicofe/gp2x/soc_pollux.o
322 OBJS += frontend/libpicofe/linux/in_evdev.o
323 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
324 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
325 USE_PLUGIN_LIB = 1
326 USE_FRONTEND = 1
327 endif
328 ifeq "$(PLATFORM)" "maemo"
329 OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
330 maemo/%.o: maemo/%.c
331 USE_PLUGIN_LIB = 1
332 LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
333 CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
334 CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
335 LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
336 endif
337 ifeq "$(PLATFORM)" "libretro"
338 ifeq "$(USE_LIBRETRO_VFS)" "1"
339 OBJS += deps/libretro-common/compat/compat_posix_string.o
340 OBJS += deps/libretro-common/compat/fopen_utf8.o
341 OBJS += deps/libretro-common/compat/compat_strl.o
342 OBJS += deps/libretro-common/encodings/encoding_utf.o
343 OBJS += deps/libretro-common/file/file_path.o
344 OBJS += deps/libretro-common/streams/file_stream.o
345 OBJS += deps/libretro-common/streams/file_stream_transforms.o
346 OBJS += deps/libretro-common/string/stdstring.o
347 OBJS += deps/libretro-common/time/rtime.o
348 OBJS += deps/libretro-common/vfs/vfs_implementation.o
349 CFLAGS += -DUSE_LIBRETRO_VFS
350 endif
351 OBJS += frontend/libretro.o
352 CFLAGS += -Ideps/libretro-common/include
353 CFLAGS += -DFRONTEND_SUPPORTS_RGB565
354 CFLAGS += -DHAVE_LIBRETRO
355
356 ifneq ($(DYNAREC),lightrec)
357 ifeq ($(MMAP_WIN32),1)
358 OBJS += libpcsxcore/memmap_win32.o
359 endif
360 endif
361 endif
362
363 ifeq "$(USE_PLUGIN_LIB)" "1"
364 OBJS += frontend/plugin_lib.o
365 OBJS += frontend/libpicofe/linux/plat.o
366 OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
367 frontend/libpicofe/linux/plat.o: CFLAGS += -DNO_HOME_DIR
368 ifeq "$(HAVE_NEON_ASM)" "1"
369 OBJS += frontend/libpicofe/arm/neon_scale2x.o
370 OBJS += frontend/libpicofe/arm/neon_eagle2x.o
371 frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
372 frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
373 endif
374 endif
375 ifeq "$(USE_FRONTEND)" "1"
376 OBJS += frontend/menu.o
377 OBJS += frontend/libpicofe/input.o
378 frontend/menu.o: frontend/libpicofe/menu.c
379 ifeq "$(HAVE_TSLIB)" "1"
380 frontend/%.o: CFLAGS += -DHAVE_TSLIB
381 OBJS += frontend/pl_gun_ts.o
382 endif
383 else
384 CFLAGS += -DNO_FRONTEND
385 endif
386
387 # misc
388 OBJS += frontend/main.o frontend/plugin.o
389 frontend/main.o: CFLAGS += -DBUILTIN_GPU=$(BUILTIN_GPU)
390
391 frontend/menu.o frontend/main.o: frontend/revision.h
392 frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
393
394 frontend/libpicofe/%.c:
395         @echo "libpicofe module is missing, please run:"
396         @echo "git submodule init && git submodule update"
397         @exit 1
398
399 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
400         $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
401
402 frontend/revision.h: FORCE
403         @(git describe --always || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
404         @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
405         @rm $@_
406
407 %.o: %.S
408         $(CC_AS) $(CFLAGS) -c $^ -o $@
409
410 %.o: %.cpp
411         $(CXX) $(CXXFLAGS) -c -o $@ $<
412
413 %.o: %.c
414         $(CC) $(CFLAGS) -c -o $@ $<
415
416 target_: $(TARGET)
417
418 $(TARGET): $(OBJS)
419 ifeq ($(STATIC_LINKING), 1)
420         $(AR) rcs $@ $(OBJS)
421 else
422         $(CC_LINK) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
423 endif
424
425 clean: $(PLAT_CLEAN) clean_plugins
426         $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
427
428 ifneq ($(PLUGINS),)
429 plugins_: $(PLUGINS)
430
431 $(PLUGINS):
432         $(MAKE) -C $(dir $@)
433
434 clean_plugins:
435         $(MAKE) -C plugins/gpulib/ clean
436         for dir in $(PLUGINS) ; do \
437                 $(MAKE) -C $$(dirname $$dir) clean; done
438 else
439 plugins_:
440 clean_plugins:
441 endif
442
443 .PHONY: all clean target_ plugins_ clean_plugins FORCE
444
445 # ----------- release -----------
446
447 VER ?= $(shell git describe --always HEAD)
448
449 ifeq "$(PLATFORM)" "generic"
450 OUT = pcsx_rearmed_$(VER)
451
452 rel: pcsx $(PLUGINS) \
453                 frontend/pandora/skin readme.txt COPYING
454         rm -rf $(OUT)
455         mkdir -p $(OUT)/plugins
456         mkdir -p $(OUT)/bios
457         cp -r $^ $(OUT)/
458         mv $(OUT)/*.so* $(OUT)/plugins/
459         zip -9 -r $(OUT).zip $(OUT)
460 endif
461
462 ifeq "$(PLATFORM)" "pandora"
463 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
464
465 rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
466                 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
467                 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
468         rm -rf out
469         mkdir -p out/plugins
470         cp -r $^ out/
471         sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
472         rm out/pcsx.pxml.templ
473         mv out/*.so out/plugins/
474         $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
475 endif
476
477 ifeq "$(PLATFORM)" "caanoo"
478 PLAT_CLEAN = caanoo_clean
479
480 caanoo_clean:
481         $(RM) frontend/320240/pollux_set
482
483 rel: pcsx $(PLUGINS) \
484                 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
485                 frontend/320240/pcsxb.png frontend/320240/skin \
486                 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
487                 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
488                 frontend/320240/haptic_s.cfg \
489                 readme.txt COPYING
490         rm -rf out
491         mkdir -p out/pcsx_rearmed/plugins
492         cp -r $^ out/pcsx_rearmed/
493         mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
494         mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
495         mv out/pcsx_rearmed/pcsx_rearmed.ini out/
496         mkdir out/pcsx_rearmed/lib/
497         cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
498         mkdir out/pcsx_rearmed/bios/
499         cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
500 endif