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