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