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