libretro-super/libretro-build-wii.sh

53 lines
827 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-12 16:20:17 +00:00
if [[ -z "$1" ]]; then
WANT_CORES=" \
2015-07-21 14:56:09 +00:00
2048 \
2015-07-12 16:20:17 +00:00
bluemsx \
fceumm \
fmsx \
gambatte \
genesis_plus_gx \
mednafen_gba \
mednafen_lynx \
mednafen_ngp \
mednafen_pce_fast \
mednafen_pcfx \
mednafen_supergrafx \
mednafen_wswan \
mednafen_vb \
nestopia \
nxengine \
quicknes \
prboom \
snes9x_next \
vba_next \
2015-07-20 11:45:55 +00:00
tyrquake \
gw \
2015-07-21 14:58:33 +00:00
mgba \
2015-07-23 23:23:32 +00:00
fb_alpha_cps1 \
fb_alpha_cps2 \
2015-07-23 23:27:36 +00:00
fb_alpha_neo \
2015-07-20 11:45:55 +00:00
vecx"
else
2015-07-12 16:20:17 +00:00
WANT_CORES="$@"
fi
2015-07-12 16:20:17 +00:00
platform=wii ${BASE_DIR}/libretro-build.sh ${WANT_CORES}