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