2013-12-09 01:10:42 +00:00
|
|
|
#!/bin/bash
|
2013-04-29 21:10:43 +00:00
|
|
|
|
2014-02-25 01:01:13 +00:00
|
|
|
build_libretro_fba_cps2_gx()
|
|
|
|
{
|
|
|
|
cd $BASE_DIR
|
|
|
|
if [ -d "libretro-fba" ]; then
|
|
|
|
echo "=== Building Final Burn Alpha Cores (CPS2) ==="
|
|
|
|
cd libretro-fba/
|
|
|
|
cd svn-old/trunk
|
|
|
|
cd fbacores/cps2
|
|
|
|
make -f makefile.libretro platform=$FORMAT_COMPILER_TARGET -j$JOBS clean || die "Failed to clean Final Burn Alpha Cores CPS2"
|
|
|
|
make -f makefile.libretro platform=$FORMAT_COMPILER_TARGET -j$JOBS || die "Failed to build Final Burn Alpha Cores CPS2"
|
|
|
|
cp fba_cores_cps2_libretro$FORMAT.${FORMAT_EXT} $RARCH_DIST_DIR/fba_cores_cps2_libretro$FORMAT.${FORMAT_EXT}
|
|
|
|
fi
|
|
|
|
}
|
2013-12-13 02:08:27 +00:00
|
|
|
|
|
|
|
build_libretro_fba()
|
|
|
|
{
|
2014-08-22 13:39:20 +00:00
|
|
|
build_libretro_fb_alpha
|
2013-12-13 02:08:27 +00:00
|
|
|
build_libretro_fba_cps1
|
2014-02-25 01:01:13 +00:00
|
|
|
build_libretro_fba_cps2_gx
|
2013-12-13 02:08:27 +00:00
|
|
|
build_libretro_fba_neogeo
|
|
|
|
}
|