2015-02-16 19:19:30 -08:00
|
|
|
#! /usr/bin/env bash
|
|
|
|
# vim: set ts=3 sw=3 noet ft=sh : bash
|
2013-02-09 21:31:28 +01:00
|
|
|
|
2013-04-29 22:36:13 +02:00
|
|
|
SCRIPT=$(readlink -f $0)
|
|
|
|
BASE_DIR=$(dirname $SCRIPT)
|
2015-02-21 11:38:52 -08:00
|
|
|
WORKDIR="$PWD"
|
2013-04-29 22:36:13 +02:00
|
|
|
RARCH_DIR=$BASE_DIR/dist
|
|
|
|
RARCH_DIST_DIR=$RARCH_DIR/ps3
|
2013-02-09 21:31:28 +01:00
|
|
|
FORMAT=_ps3
|
2013-03-01 17:44:21 +01:00
|
|
|
FORMAT_COMPILER_TARGET=ps3
|
|
|
|
FORMAT_COMPILER_TARGET_ALT=sncps3
|
2013-04-30 06:35:47 +02:00
|
|
|
FORMAT_EXT=a
|
2013-02-09 21:31:28 +01:00
|
|
|
JOBS=7
|
2013-05-19 01:40:51 +02:00
|
|
|
MAKE=make
|
2013-02-09 21:31:28 +01:00
|
|
|
|
2015-02-22 23:19:26 -08:00
|
|
|
. "$BASE_DIR/libretro-build-common.sh"
|
2013-02-09 21:31:28 +01:00
|
|
|
|
2013-05-03 17:22:09 +02:00
|
|
|
if [ $1 ]; then
|
2015-02-16 19:19:30 -08:00
|
|
|
$1
|
2013-05-03 17:22:09 +02:00
|
|
|
else
|
2015-03-12 03:35:54 -07:00
|
|
|
libretro_build_core fb_alpha
|
|
|
|
libretro_build_core fceumm
|
|
|
|
libretro_build_core gambatte
|
|
|
|
libretro_build_core genesis_plus_gx
|
|
|
|
libretro_build_core handy
|
|
|
|
libretro_build_core mame078
|
|
|
|
libretro_build_core mednafen_bsnes
|
|
|
|
libretro_build_core mednafen_gba
|
|
|
|
libretro_build_core mednafen_lynx
|
|
|
|
libretro_build_core mednafen_ngp
|
|
|
|
libretro_build_core mednafen_pce_fast
|
|
|
|
libretro_build_core mednafen_pcfx
|
|
|
|
libretro_build_core mednafen_psx
|
|
|
|
libretro_build_core mednafen_supergrafx
|
|
|
|
libretro_build_core mednafen_vb
|
|
|
|
libretro_build_core mednafen_wswan
|
|
|
|
libretro_build_core nestopia
|
|
|
|
libretro_build_core nxengine
|
|
|
|
libretro_build_core prboom
|
|
|
|
libretro_build_core quicknes
|
|
|
|
libretro_build_core snes9x_next
|
|
|
|
libretro_build_core stella
|
|
|
|
libretro_build_core tyrquake
|
|
|
|
libretro_build_core vba_next
|
2013-05-03 17:22:09 +02:00
|
|
|
fi
|