libretro-super/libretro-build-ps2.sh
Francisco Javier Trujillo Mata ff77770b3f Create the build for the PS2
2018-12-30 17:12:28 +01:00

18 lines
321 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
platform=ps2 ${BASE_DIR}/libretro-build.sh $@