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