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