mirror of
https://github.com/libretro/libretro-super.git
synced 2024-11-23 15:59:57 +00:00
28 lines
439 B
Bash
Executable File
28 lines
439 B
Bash
Executable File
#! /usr/bin/env bash
|
|
# vim: set ts=3 sw=3 noet ft=sh : bash
|
|
|
|
SCRIPT="${0#./}"
|
|
BASE_DIR="${SCRIPT%/*}"
|
|
WORKDIR="$PWD"
|
|
|
|
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=" \
|
|
2048 \
|
|
gambatte \
|
|
snes9x2010 \
|
|
vecx"
|
|
else
|
|
WANT_CORES="$@"
|
|
fi
|
|
|
|
platform=sncps3 ${BASE_DIR}/libretro-build.sh ${WANT_CORES}
|