2013-12-09 01:10:42 +00:00
|
|
|
#!/bin/bash
|
2013-02-09 20:31:28 +00:00
|
|
|
|
2013-04-29 20:36:13 +00:00
|
|
|
SCRIPT=$(readlink -f $0)
|
|
|
|
BASE_DIR=$(dirname $SCRIPT)
|
|
|
|
RARCH_DIR=$BASE_DIR/dist
|
|
|
|
RARCH_DIST_DIR=$RARCH_DIR/ps3
|
2013-02-09 20:31:28 +00:00
|
|
|
FORMAT=_ps3
|
2013-03-01 16:44:21 +00:00
|
|
|
FORMAT_COMPILER_TARGET=ps3
|
|
|
|
FORMAT_COMPILER_TARGET_ALT=sncps3
|
2013-04-30 04:35:47 +00:00
|
|
|
FORMAT_EXT=a
|
2013-02-09 20:31:28 +00:00
|
|
|
JOBS=7
|
2013-05-18 23:40:51 +00:00
|
|
|
MAKE=make
|
2013-02-09 20:31:28 +00:00
|
|
|
|
2013-05-18 22:17:06 +00:00
|
|
|
. ./libretro-build-common.sh
|
2013-02-09 20:31:28 +00:00
|
|
|
|
2013-05-03 15:22:09 +00:00
|
|
|
if [ $1 ]; then
|
|
|
|
$1
|
|
|
|
else
|
2014-06-22 22:41:47 +00:00
|
|
|
build_libretro_beetle_lynx
|
2014-06-22 21:34:25 +00:00
|
|
|
build_libretro_beetle_gba
|
2014-06-22 00:12:59 +00:00
|
|
|
build_libretro_beetle_ngp
|
|
|
|
build_libretro_beetle_pce_fast
|
2014-06-22 03:13:43 +00:00
|
|
|
build_libretro_beetle_supergrafx
|
2014-06-22 01:14:12 +00:00
|
|
|
build_libretro_beetle_pcfx
|
2014-06-22 00:12:59 +00:00
|
|
|
build_libretro_beetle_vb
|
|
|
|
build_libretro_beetle_wswan
|
2014-12-30 18:57:33 +00:00
|
|
|
build_libretro_mednafen_psx
|
2014-06-22 23:50:36 +00:00
|
|
|
build_libretro_beetle_bsnes
|
2014-08-22 10:17:52 +00:00
|
|
|
build_libretro_snes9x_next
|
2014-08-22 10:28:27 +00:00
|
|
|
build_libretro_genesis_plus_gx
|
2014-08-22 13:39:20 +00:00
|
|
|
build_libretro_fb_alpha
|
2013-08-15 12:50:25 +00:00
|
|
|
build_libretro_vba_next
|
2014-04-14 03:53:23 +00:00
|
|
|
build_libretro_fceumm
|
2013-05-03 15:22:09 +00:00
|
|
|
build_libretro_gambatte
|
|
|
|
build_libretro_nx
|
|
|
|
build_libretro_prboom
|
2014-02-23 00:52:59 +00:00
|
|
|
build_libretro_stella
|
2013-05-19 18:33:13 +00:00
|
|
|
build_libretro_quicknes
|
2013-05-03 15:22:09 +00:00
|
|
|
build_libretro_nestopia
|
|
|
|
build_libretro_tyrquake
|
2013-11-15 05:06:46 +00:00
|
|
|
build_libretro_mame078
|
2014-02-23 01:26:20 +00:00
|
|
|
build_libretro_handy
|
2013-05-03 15:22:09 +00:00
|
|
|
fi
|