libretro-super/libretro-build-ios.sh

20 lines
383 B
Bash
Raw Normal View History

#! /usr/bin/env bash
# vim: set ts=3 sw=3 noet ft=sh : bash
2013-03-26 13:18:20 +00:00
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 iOS build rules have all been moved to libretro-build.sh
2015-02-21 07:31:40 +00:00
platform=ios ${BASE_DIR}/libretro-build.sh $@