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