libretro-super/libretro-build-ios-theos.sh
2015-03-10 14:18:53 -07:00

20 lines
393 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
# The theos build rules have all been moved to libretro-build.sh
platform=theos_ios ${BASE_DIR}/libretro-build.sh $@