Update SNC PS3 build script

This commit is contained in:
twinaphex 2015-07-11 07:08:17 +02:00
parent a2476c5c96
commit bb9fdd2be2
2 changed files with 13 additions and 9 deletions

View File

@ -19,9 +19,7 @@ fi
if [[ -z "$1" ]]; then
WANT_CORES=" \
fb_alpha \
snes9x_next \
fceumm \
gambatte \
genesis_plus_gx \
handy \
mame078 \
@ -35,15 +33,11 @@ WANT_CORES=" \
mednafen_vb \
nestopia \
nxengine \
prboom \
quicknes \
snes9x_next \
stella \
tyrquake \
vba_next"
tyrquake"
else
WANT_CORES="$@"
fi
platform=ps3 ${BASE_DIR}/libretro-build.sh $WANT_CORES
platform=ps3 ${BASE_DIR}/libretro-build.sh ${WANT_CORES}

View File

@ -16,4 +16,14 @@ fi
# The SNC PS3 build rules have all been moved to libretro-build.sh
platform=sncps3 ${BASE_DIR}/libretro-build.sh $@
if [[ -z "$1" ]]; then
WANT_CORES=" \
snes9x_next \
gambatte \
prboom \
vba_next"
else
WANT_CORES="$@"
fi
platform=sncps3 ${BASE_DIR}/libretro-build.sh ${WANT_CORES}