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