libretro-super/libretro-build-wii.sh

20 lines
385 B
Bash
Raw Normal View History

#! /usr/bin/env bash
# vim: set ts=3 sw=3 noet ft=sh : bash
2013-02-09 20:31:28 +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
2015-07-12 16:20:17 +00:00
# The Wii build rules have all been moved to libretro-build.sh
2013-02-09 20:31:28 +00:00
2015-07-31 05:25:29 +00:00
platform=wii ${BASE_DIR}/libretro-build.sh $@