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