libretro-super/libretro-build-ps3.sh

50 lines
734 B
Bash
Raw Normal View History

#! /usr/bin/env bash
# vim: set ts=3 sw=3 noet ft=sh : bash
2013-02-09 21:31:28 +01:00
SCRIPT="${0#./}"
BASE_DIR="${SCRIPT%/*}"
WORKDIR="$PWD"
2013-02-09 21:31:28 +01:00
if [ "$BASE_DIR" = "$SCRIPT" ]; then
BASE_DIR="$WORKDIR"
else
if [[ "$0" != /* ]]; then
# Make the path absolute
BASE_DIR="$WORKDIR/$BASE_DIR"
fi
fi
if [[ -z "$1" ]]; then
WANT_CORES=" \
2017-08-25 12:46:27 +02:00
81 \
2016-08-05 19:14:09 +02:00
fbalpha2012 \
fceumm \
2017-08-25 12:46:27 +02:00
fuse \
genesis_plus_gx \
handy \
mame2000 \
2015-11-03 16:06:30 +01:00
mame2003 \
mednafen_gba \
mednafen_lynx \
mednafen_ngp \
mednafen_pce_fast \
mednafen_pcfx \
mednafen_psx \
mednafen_supergrafx \
mednafen_vb \
nestopia \
nxengine \
quicknes \
2015-08-03 04:32:32 +02:00
prosystem \
prboom \
stella \
2015-07-20 13:45:55 +02:00
tyrquake \
2016-10-22 11:55:10 +02:00
vba_next \
2015-07-21 16:58:33 +02:00
gw \
mgba"
else
WANT_CORES="$@"
fi
2015-07-11 07:08:17 +02:00
platform=ps3 ${BASE_DIR}/libretro-build.sh ${WANT_CORES}