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