libretro: preliminary physical cdrom support
[pcsx_rearmed.git] / Makefile
CommitLineData
4132e8ca 1# Makefile for PCSX ReARMed
a80ae4a0 2
61bc6d40 3# default stuff goes here, so that config can override
9aff1963 4TARGET ?= pcsx
da710571 5CFLAGS += -Wall -ggdb -Iinclude -ffast-math
f95a77f7 6ifndef DEBUG
cfbd3c6e 7CFLAGS += -O2 -DNDEBUG
b60f2812 8endif
36c76c86
PC
9ifeq ($(DEBUG_ASAN), 1)
10CFLAGS += -fsanitize=address
11endif
9165d434 12CFLAGS += -DP_HAVE_MMAP=$(if $(NO_MMAP),0,1) \
13 -DP_HAVE_PTHREAD=$(if $(NO_PTHREAD),0,1) \
4bb8d7e1
PC
14 -DP_HAVE_POSIX_MEMALIGN=$(if $(NO_POSIX_MEMALIGN),0,1) \
15 -DDISABLE_MEM_LUTS=0
61bc6d40 16CXXFLAGS += $(CFLAGS)
4132e8ca 17#DRC_DBG = 1
18#PCNT = 1
80c2304e 19
38c2028e 20all: config.mak target_ plugins_
de38f20e 21
9aff1963 22ifndef NO_CONFIG_MAK
4132e8ca 23ifneq ($(wildcard config.mak),)
24config.mak: ./configure
25 @echo $@ is out-of-date, running configure
26 @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
27include config.mak
28else
29config.mak:
30 @echo "Please run ./configure before running make!"
31 @exit 1
32endif
9aff1963 33else # NO_CONFIG_MAK
34config.mak:
35endif
36
4132e8ca 37-include Makefile.local
80c2304e 38
9aff1963 39CC_LINK ?= $(CC)
40CC_AS ?= $(CC)
22fa3f2b 41LDFLAGS += $(MAIN_LDFLAGS)
36c76c86
PC
42ifeq ($(DEBUG_ASAN), 1)
43LDFLAGS += -static-libasan
44endif
9aff1963 45EXTRA_LDFLAGS ?= -Wl,-Map=$@.map
07c13dfd 46LDLIBS += $(MAIN_LDLIBS)
e0aec5ee 47ifdef PCNT
48CFLAGS += -DPCNT
49endif
61bc6d40 50
80c2304e 51# core
7d7672a5 52OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/database.o \
53 libpcsxcore/decode_xa.o libpcsxcore/mdec.o \
80c2304e 54 libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
0890ae15 55 libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o \
9a0a61d2 56 libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o \
57 libpcsxcore/psxevents.o libpcsxcore/r3000a.o \
abf09485 58 libpcsxcore/sio.o libpcsxcore/spu.o libpcsxcore/gpu.o
59774ed0 59OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
7d7672a5 60#OBJS += libpcsxcore/debug.o libpcsxcore/socket.o libpcsxcore/disr3000a.o
59774ed0 61ifeq "$(ARCH)" "arm"
62OBJS += libpcsxcore/gte_arm.o
63endif
57467c77 64ifeq "$(HAVE_NEON_ASM)" "1"
8cfbda97 65OBJS += libpcsxcore/gte_neon.o
66endif
305c8c93 67libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
ab948f7e 68
f95a77f7 69# dynarec
4132e8ca 70ifeq "$(USE_DYNAREC)" "1"
be516ebe 71OBJS += libpcsxcore/new_dynarec/new_dynarec.o
7e605697 72OBJS += libpcsxcore/new_dynarec/pcsxmem.o
be516ebe 73 ifeq "$(ARCH)" "arm"
74 OBJS += libpcsxcore/new_dynarec/linkage_arm.o
687b4580 75 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c
57467c77 76 else ifneq (,$(findstring $(ARCH),aarch64 arm64))
be516ebe 77 OBJS += libpcsxcore/new_dynarec/linkage_arm64.o
687b4580 78 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm64.c
be516ebe 79 else
80 $(error no dynarec support for architecture $(ARCH))
81 endif
448bbcae 82else
41e82ad4 83CFLAGS += -DDRC_DISABLE
7139f3c8 84endif
9a0a61d2 85OBJS += libpcsxcore/new_dynarec/emu_if.o
687b4580 86libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/pcsxmem_inline.c
3eb78778 87ifdef DRC_DBG
88libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
89CFLAGS += -DDRC_DBG
90endif
2a014d73 91ifeq "$(BASE_ADDR_DYNAMIC)" "1"
92libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_DYNAMIC=1
a327ad27 93endif
f95a77f7 94
e906c010 95# spu
ee849648 96OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
07c13dfd 97 plugins/dfsound/registers.o plugins/dfsound/spu.o \
98 plugins/dfsound/out.o plugins/dfsound/nullsnd.o
6d866bb7 99plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
100 plugins/dfsound/xa.c
3a721c1f 101ifeq "$(ARCH)" "arm"
b17618c0 102OBJS += plugins/dfsound/arm_utils.o
103endif
5514a050 104ifeq "$(HAVE_C64_TOOLS)" "1"
42dde520 105plugins/dfsound/%.o: CFLAGS += -DC64X_DSP -DWANT_THREAD_CODE
5514a050 106plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
8886a808 107frontend/menu.o: CFLAGS += -DC64X_DSP
5514a050 108endif
07c13dfd 109ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
110plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
de38f20e 111OBJS += plugins/dfsound/oss.o
112endif
07c13dfd 113ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
114plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
de38f20e 115OBJS += plugins/dfsound/alsa.o
4132e8ca 116LDLIBS += -lasound
117endif
07c13dfd 118ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
119plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
d8a2f79b 120OBJS += plugins/dfsound/sdl.o
121endif
07c13dfd 122ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
123plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
124OBJS += plugins/dfsound/pulseaudio.o
125endif
126ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
127plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
de38f20e 128endif
129
61bc6d40 130# builtin gpu
131OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
61bc6d40 132ifeq "$(BUILTIN_GPU)" "neon"
57467c77 133OBJS += plugins/gpu_neon/psx_gpu_if.o
90ca4913 134plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
135plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
57467c77 136frontend/menu.o frontend/plugin_lib.o: CFLAGS += -DBUILTIN_GPU_NEON
137 ifeq "$(HAVE_NEON_ASM)" "1"
138 OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
139 else
140 OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_simd.o
141 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DSIMD_BUILD
142 plugins/gpu_neon/psx_gpu/psx_gpu_simd.o: CFLAGS += -DSIMD_BUILD
143 endif
61bc6d40 144endif
145ifeq "$(BUILTIN_GPU)" "peops"
2ef486ee 146# note: code is not safe for strict-aliasing? (Castlevania problems)
62d7fa95 147plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
148plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
149OBJS += plugins/dfxvideo/gpulib_if.o
90ca4913 150endif
5a920d32 151ifeq "$(BUILTIN_GPU)" "unai_old"
152OBJS += plugins/gpu_unai_old/gpulib_if.o
61bc6d40 153ifeq "$(ARCH)" "arm"
5a920d32 154OBJS += plugins/gpu_unai_old/gpu_arm.o
61bc6d40 155endif
5a920d32 156plugins/gpu_unai_old/gpulib_if.o: CFLAGS += -DREARMED -O3
61bc6d40 157CC_LINK = $(CXX)
b60f2812 158endif
e0c692d9 159
4cfc568d 160ifeq "$(BUILTIN_GPU)" "unai"
161OBJS += plugins/gpu_unai/gpulib_if.o
0bfe8d59 162ifeq "$(ARCH)" "arm"
4cfc568d 163OBJS += plugins/gpu_unai/gpu_arm.o
0bfe8d59 164endif
e223fa15 165plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -DUSE_GPULIB=1 -O3
0bfe8d59 166CC_LINK = $(CXX)
167endif
168
47bf65ab 169# cdrcimg
47bf65ab 170OBJS += plugins/cdrcimg/cdrcimg.o
68e7d409 171#ifeq "$(CHD_SUPPORT)" "1"
00f0670c 172OBJS += libchdr/src/libchdr_bitstream.o
173OBJS += libchdr/src/libchdr_cdrom.o
174OBJS += libchdr/src/libchdr_chd.o
175OBJS += libchdr/src/libchdr_flac.o
176OBJS += libchdr/src/libchdr_huffman.o
177OBJS += libchdr/deps/lzma-19.00/src/Alloc.o libchdr/deps/lzma-19.00/src/Bra86.o libchdr/deps/lzma-19.00/src/BraIA64.o libchdr/deps/lzma-19.00/src/CpuArch.o libchdr/deps/lzma-19.00/src/Delta.o
178OBJS += libchdr/deps/lzma-19.00/src/LzFind.o libchdr/deps/lzma-19.00/src/Lzma86Dec.o libchdr/deps/lzma-19.00/src/LzmaDec.o libchdr/deps/lzma-19.00/src/LzmaEnc.o libchdr/deps/lzma-19.00/src/Sort.o
68e7d409 179CFLAGS += -DHAVE_CHD -Ilibchdr/include
180libpcsxcore/cdriso.o: CFLAGS += -Wno-unused-function
27f734f9 181libchdr/src/%.o: CFLAGS += -Wno-unused -Ilibchdr/deps/lzma-19.00/include -std=gnu11
68e7d409 182libchdr/deps/lzma-19.00/src/%.o: CFLAGS += -Wno-unused -D_7ZIP_ST -Ilibchdr/deps/lzma-19.00/include
183#endif
e906c010 184
cc56203b 185# frontend/gui
c82f907a 186OBJS += frontend/cspace.o
57467c77 187ifeq "$(HAVE_NEON_ASM)" "1"
c82f907a 188OBJS += frontend/cspace_neon.o
57467c77 189frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565 -DHAVE_bgr888_to_x
d57557c0 190else
191ifeq "$(ARCH)" "arm"
192OBJS += frontend/cspace_arm.o
57467c77 193frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565
d57557c0 194endif
c82f907a 195endif
196
4132e8ca 197ifeq "$(PLATFORM)" "generic"
5b9aa749 198OBJS += frontend/libpicofe/in_sdl.o
199OBJS += frontend/libpicofe/plat_sdl.o
cc56203b 200OBJS += frontend/libpicofe/plat_dummy.o
201OBJS += frontend/libpicofe/linux/in_evdev.o
5b9aa749 202OBJS += frontend/plat_sdl.o
203ifeq "$(HAVE_GLES)" "1"
2c616080 204OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
5b9aa749 205LDLIBS += $(LDLIBS_GLES)
206frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
2c616080 207frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
5b9aa749 208frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
209frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
210endif
cc56203b 211USE_PLUGIN_LIB = 1
38c2028e 212USE_FRONTEND = 1
4132e8ca 213endif
55b0eeea 214ifeq "$(PLATFORM)" "pandora"
cc56203b 215OBJS += frontend/libpicofe/pandora/plat.o
216OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
217OBJS += frontend/libpicofe/linux/in_evdev.o
218OBJS += frontend/plat_pandora.o frontend/plat_omap.o
da710571 219frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
3aba4185 220frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
cc56203b 221USE_PLUGIN_LIB = 1
38c2028e 222USE_FRONTEND = 1
42dde520 223CFLAGS += -gdwarf-3 -ffunction-sections -fdata-sections
224LDFLAGS += -Wl,--gc-sections
4132e8ca 225endif
55b0eeea 226ifeq "$(PLATFORM)" "caanoo"
cc56203b 227OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
228OBJS += frontend/libpicofe/gp2x/soc_pollux.o
229OBJS += frontend/libpicofe/linux/in_evdev.o
faf2b2aa 230OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
da710571 231frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
cc56203b 232USE_PLUGIN_LIB = 1
38c2028e 233USE_FRONTEND = 1
234endif
235ifeq "$(PLATFORM)" "maemo"
baaef67b 236OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
38c2028e 237maemo/%.o: maemo/%.c
cc56203b 238USE_PLUGIN_LIB = 1
a76fd953 239LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
7010034e 240CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
a76fd953
PI
241CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
242LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
38c2028e 243endif
244ifeq "$(PLATFORM)" "libretro"
835c219c 245ifneq "$(HAVE_PHYSICAL_CDROM)$(USE_LIBRETRO_VFS)" "00"
246OBJS += deps/libretro-common/compat/compat_strl.o
247OBJS += deps/libretro-common/file/file_path.o
248OBJS += deps/libretro-common/string/stdstring.o
249OBJS += deps/libretro-common/vfs/vfs_implementation.o
250endif
251ifeq "$(HAVE_PHYSICAL_CDROM)" "1"
252OBJS += deps/libretro-common/cdrom/cdrom.o
253OBJS += deps/libretro-common/memmap/memalign.o
254OBJS += deps/libretro-common/vfs/vfs_implementation_cdrom.o
255CFLAGS += -DHAVE_CDROM
256endif
257ifeq "$(USE_LIBRETRO_VFS)" "1"
258OBJS += deps/libretro-common/compat/compat_posix_string.o
259OBJS += deps/libretro-common/compat/fopen_utf8.o
260OBJS += deps/libretro-common/encodings/encoding_utf.o
261OBJS += deps/libretro-common/streams/file_stream.o
262OBJS += deps/libretro-common/streams/file_stream_transforms.o
263OBJS += deps/libretro-common/time/rtime.o
264CFLAGS += -DUSE_LIBRETRO_VFS
265endif
38c2028e 266OBJS += frontend/libretro.o
46aa5b98 267CFLAGS += -DFRONTEND_SUPPORTS_RGB565
ce0e7ac9 268
269ifeq ($(MMAP_WIN32),1)
270OBJS += libpcsxcore/memmap_win32.o
271endif
38c2028e 272endif
cc56203b 273
274ifeq "$(USE_PLUGIN_LIB)" "1"
38c2028e 275OBJS += frontend/plugin_lib.o
cc56203b 276OBJS += frontend/libpicofe/linux/plat.o
277OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
a4da039c 278frontend/libpicofe/linux/plat.o: CFLAGS += -DNO_HOME_DIR
57467c77 279ifeq "$(HAVE_NEON_ASM)" "1"
cc56203b 280OBJS += frontend/libpicofe/arm/neon_scale2x.o
281OBJS += frontend/libpicofe/arm/neon_eagle2x.o
282frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
283frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
284endif
285endif
286ifeq "$(USE_FRONTEND)" "1"
287OBJS += frontend/menu.o
288OBJS += frontend/libpicofe/input.o
289frontend/menu.o: frontend/libpicofe/menu.c
38c2028e 290ifeq "$(HAVE_TSLIB)" "1"
291frontend/%.o: CFLAGS += -DHAVE_TSLIB
292OBJS += frontend/pl_gun_ts.o
293endif
294else
295CFLAGS += -DNO_FRONTEND
55b0eeea 296endif
a80ae4a0 297
cc56203b 298# misc
299OBJS += frontend/main.o frontend/plugin.o
0d87d062 300frontend/main.o: CFLAGS += -DBUILTIN_GPU=$(BUILTIN_GPU)
e0aec5ee 301
a1a232ad 302frontend/menu.o frontend/main.o: frontend/revision.h
303frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
3c70c47b 304
cc56203b 305frontend/libpicofe/%.c:
fa56d360 306 @echo "libpicofe module is missing, please run:"
307 @echo "git submodule init && git submodule update"
308 @exit 1
309
59774ed0 310libpcsxcore/gte_nf.o: libpcsxcore/gte.c
311 $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
312
3c70c47b 313frontend/revision.h: FORCE
4527b1fd 314 @(git describe --always || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
3c70c47b 315 @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
316 @rm $@_
3c70c47b 317
90ca4913 318%.o: %.S
9aff1963 319 $(CC_AS) $(CFLAGS) -c $^ -o $@
80c2304e 320
e0aec5ee 321
38c2028e 322target_: $(TARGET)
323
80c2304e 324$(TARGET): $(OBJS)
07f64ac7 325 $(CC_LINK) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
80c2304e 326
dd4d5a35 327clean: $(PLAT_CLEAN) clean_plugins
a1a232ad 328 $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
0d464c77 329
4132e8ca 330ifneq ($(PLUGINS),)
dd4d5a35 331plugins_: $(PLUGINS)
332
ee78346e 333$(PLUGINS):
4cccc4d2 334 $(MAKE) -C $(dir $@)
f932e54b 335
ee78346e 336clean_plugins:
4cccc4d2 337 $(MAKE) -C plugins/gpulib/ clean
ee78346e 338 for dir in $(PLUGINS) ; do \
339 $(MAKE) -C $$(dirname $$dir) clean; done
dd4d5a35 340else
341plugins_:
342clean_plugins:
4132e8ca 343endif
80c2304e 344
fa56d360 345.PHONY: all clean target_ plugins_ clean_plugins FORCE
346
857275a9 347ifneq "$(PLATFORM)" "pandora"
348ifdef CPATH
349$(warning warning: CPATH is defined)
350endif
351endif
352
303ee308 353# ----------- release -----------
354
4527b1fd 355VER ?= $(shell git describe --always HEAD)
4132e8ca 356
dd4d5a35 357ifeq "$(PLATFORM)" "generic"
358OUT = pcsx_rearmed_$(VER)
359
360rel: pcsx $(PLUGINS) \
361 frontend/pandora/skin readme.txt COPYING
362 rm -rf $(OUT)
363 mkdir -p $(OUT)/plugins
364 mkdir -p $(OUT)/bios
365 cp -r $^ $(OUT)/
366 mv $(OUT)/*.so* $(OUT)/plugins/
367 zip -9 -r $(OUT).zip $(OUT)
368endif
369
4132e8ca 370ifeq "$(PLATFORM)" "pandora"
303ee308 371PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
372
8886a808 373rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
9e0630ab 374 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
375 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
303ee308 376 rm -rf out
bbd837c6 377 mkdir -p out/plugins
303ee308 378 cp -r $^ out/
3938f69a 379 sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
380 rm out/pcsx.pxml.templ
bbd837c6 381 mv out/*.so out/plugins/
9e0630ab 382 $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
4132e8ca 383endif
384
385ifeq "$(PLATFORM)" "caanoo"
386PLAT_CLEAN = caanoo_clean
387
388caanoo_clean:
389 $(RM) frontend/320240/pollux_set
390
4132e8ca 391rel: pcsx $(PLUGINS) \
392 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
393 frontend/320240/pcsxb.png frontend/320240/skin \
394 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
395 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
396 frontend/320240/haptic_s.cfg \
397 readme.txt COPYING
398 rm -rf out
399 mkdir -p out/pcsx_rearmed/plugins
400 cp -r $^ out/pcsx_rearmed/
4132e8ca 401 mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
402 mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
403 mv out/pcsx_rearmed/pcsx_rearmed.ini out/
404 mkdir out/pcsx_rearmed/lib/
405 cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
406 mkdir out/pcsx_rearmed/bios/
407 cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
408endif