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