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