libretro-super/libretro-build-xdk1.sh

102 lines
2.5 KiB
Bash
Raw Normal View History

2013-12-09 01:10:42 +00:00
#!/bin/bash
2013-02-10 15:01:43 +00:00
2013-05-01 02:19:07 +00:00
BASE_DIR=$(pwd)
RARCH_DIR=$BASE_DIR/dist
RARCH_DIST_DIR=$RARCH_DIR/xdk1
2013-02-10 15:01:43 +00:00
FORMAT=_xdk
2013-05-18 00:11:06 +00:00
FORMAT_EXT=lib
2013-02-10 15:01:43 +00:00
MSVC_NAME=msvc-2003-xbox1
2014-03-15 15:05:24 +00:00
RELEASE_LTCG=Release_LTCG
2014-03-15 16:57:35 +00:00
RELEASE=Release
2013-02-10 15:01:43 +00:00
die()
{
echo $1
#exit 1
}
2014-03-09 18:20:02 +00:00
build_libretro_fba_cps1()
2013-02-10 15:01:43 +00:00
{
2013-04-30 03:57:01 +00:00
cd $BASE_DIR
if [ -d "libretro-fba" ]; then
2014-03-09 18:20:02 +00:00
echo "=== Building Final Burn Alpha Cores (CPS1) ==="
cd libretro-fba/
2014-01-10 21:27:01 +00:00
cd svn-current/trunk
2014-03-09 18:20:02 +00:00
cd fbacores/cps1/projectfiles/visualstudio-2003-libretro-xbox1
2013-02-10 15:01:43 +00:00
cmd.exe /k $MSVC_NAME.bat
2014-03-15 15:08:16 +00:00
cp $RELEASE_LTCG/fb_alpha_libretro$FORMAT.${FORMAT_EXT} $RARCH_DIST_DIR/fba_cores_cps1_libretro$FORMAT.${FORMAT_EXT}
2014-03-09 18:20:02 +00:00
fi
}
2013-02-17 13:19:17 +00:00
2014-03-09 18:20:02 +00:00
build_libretro_fba_cps2()
{
cd $BASE_DIR
if [ -d "libretro-fba" ]; then
2013-02-17 13:19:17 +00:00
echo "=== Building Final Burn Alpha Cores (CPS2) ==="
2014-03-09 18:20:02 +00:00
cd libretro-fba/
cd svn-old/trunk
2013-02-17 13:19:17 +00:00
cd fbacores/cps2/projectfiles/visualstudio-2003-libretro-xbox1
cmd.exe /k $MSVC_NAME.bat
2014-03-15 15:08:16 +00:00
cp $RELEASE_LTCG/libretro$FORMAT.${FORMAT_EXT} $RARCH_DIST_DIR/fba_cores_cps2_libretro$FORMAT.${FORMAT_EXT}
2014-03-09 18:20:02 +00:00
fi
}
2013-02-17 13:19:17 +00:00
2014-03-09 18:20:02 +00:00
2014-03-09 20:11:00 +00:00
build_libretro_fba_neogeo()
2014-03-09 18:20:02 +00:00
{
cd $BASE_DIR
if [ -d "libretro-fba" ]; then
2013-02-17 13:19:17 +00:00
echo "=== Building Final Burn Alpha Cores (NeoGeo) ==="
2014-03-09 18:20:02 +00:00
cd libretro-fba/
cd svn-current/trunk
2013-02-17 13:19:17 +00:00
cd fbacores/neogeo/projectfiles/visualstudio-2003-libretro-xbox1
cmd.exe /k $MSVC_NAME.bat
2014-03-15 15:08:16 +00:00
cp $RELEASE_LTCG/libretro$FORMAT.${FORMAT_EXT} $RARCH_DIST_DIR/fba_cores_neo_libretro$FORMAT.${FORMAT_EXT}
2014-03-09 18:20:02 +00:00
fi
}
build_libretro_fba()
{
cd $BASE_DIR
if [ -d "libretro-fba" ]; then
echo "=== Building Final Burn Alpha ==="
cd libretro-fba/
cd svn-current/trunk
cd projectfiles/visualstudio-2003-libretro-xbox1
cmd.exe /k $MSVC_NAME.bat
2014-03-15 15:08:16 +00:00
cp $RELEASE_LTCG/fb_alpha_libretro$FORMAT.${FORMAT_EXT} $RARCH_DIST_DIR
2014-03-09 18:20:02 +00:00
build_libretro_fba_cps1
build_libretro_fba_cps2
2014-03-09 20:11:00 +00:00
build_libretro_fba_neogeo
2013-02-10 15:01:43 +00:00
else
echo "Final Burn Alpha not fetched, skipping ..."
fi
}
source $BASE_DIR/libretro-build-common-xdk.sh
2013-04-23 23:06:34 +00:00
if [ $1 ]; then
$1
else
2014-06-22 22:41:47 +00:00
#build_libretro_beetle_lynx
2014-06-22 21:34:25 +00:00
build_libretro_beetle_gba
build_libretro_beetle_ngp
build_libretro_beetle_pce_fast
2014-06-22 03:13:43 +00:00
build_libretro_beetle_supergrafx
2014-06-22 01:14:12 +00:00
build_libretro_beetle_pcfx
build_libretro_beetle_vb
build_libretro_beetle_wswan
2014-06-22 23:50:36 +00:00
#build_libretro_beetle_bsnes
build_libretro_s9x_next
build_libretro_genplus
build_libretro_fba
build_libretro_vba_next
build_libretro_fceumm
build_libretro_gambatte
2013-05-18 14:55:00 +00:00
build_libretro_nx
build_libretro_prboom
build_libretro_nestopia
build_libretro_tyrquake
fi