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