mirror of
https://github.com/libretro/libretro-super.git
synced 2024-11-23 15:59:57 +00:00
266 lines
6.3 KiB
Bash
Executable File
266 lines
6.3 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
die()
|
|
{
|
|
echo $1
|
|
#exit 1
|
|
}
|
|
|
|
build_libretro_bsnes()
|
|
{
|
|
if [ -z "$CC" ]; then
|
|
CC=gcc
|
|
fi
|
|
|
|
if [ -d "libretro-bsnes/perf" ]; then
|
|
echo "=== Building bSNES performance ==="
|
|
cd libretro-bsnes/perf/bsnes
|
|
make compiler="$CC" ui=target-libretro profile=performance -j4 || die "Failed to build bSNES performance core"
|
|
cp -f out/libretro.so ../../libretro-bsnes-performance.so
|
|
cd ../../..
|
|
else
|
|
echo "bSNES performance not fetched, skipping ..."
|
|
fi
|
|
|
|
if [ -d "libretro-bsnes/compat" ]; then
|
|
echo "=== Building bSNES compatibility ==="
|
|
cd libretro-bsnes/compat/bsnes
|
|
make compiler="$CC" ui=target-libretro profile=compatibility -j4 || die "Failed to build bSNES compatibility core"
|
|
cp -f out/libretro.so ../../libretro-bsnes-compat.so
|
|
cd ../../..
|
|
else
|
|
echo "bSNES compat not fetched, skipping ..."
|
|
fi
|
|
|
|
if [ -d "libretro-bsnes" ]; then
|
|
echo "=== Building bSNES accuracy ==="
|
|
cd libretro-bsnes/bsnes
|
|
make compiler="$CC" ui=target-libretro profile=accuracy -j4 || die "Failed to build bSNES accuracy core"
|
|
cp -f out/libretro.so ../libretro-bsnes-accuracy.so
|
|
cd ../..
|
|
fi
|
|
}
|
|
|
|
build_libretro_mednafen()
|
|
{
|
|
if [ -d "libretro-mednafen" ]; then
|
|
echo "=== Building Mednafen ==="
|
|
cd libretro-mednafen
|
|
|
|
for core in psx pce-fast wswan ngp gba snes vb
|
|
do
|
|
if [ -d $core ]; then
|
|
cd $core
|
|
make core=${core} -j4 || die "Failed to build mednafen/${core}"
|
|
cp mednafen_$(echo ${core} | tr '[\-]' '[_]')_libretro.so ../libretro-mednafen-${core}.so
|
|
cd ..
|
|
fi
|
|
done
|
|
cd ..
|
|
else
|
|
echo "Mednafen not fetched, skipping ..."
|
|
fi
|
|
}
|
|
|
|
build_libretro_s9x()
|
|
{
|
|
if [ -d "libretro-s9x" ]; then
|
|
echo "=== Building SNES9x ==="
|
|
cd libretro-s9x/libretro
|
|
make -j4 || die "Failed to build SNES9x"
|
|
cp libretro.so ../libretro-snes9x.so
|
|
cd ../..
|
|
else
|
|
echo "SNES9x not fetched, skipping ..."
|
|
fi
|
|
}
|
|
|
|
build_libretro_s9x_next()
|
|
{
|
|
if [ -d "libretro-s9x-next" ]; then
|
|
echo "=== Building SNES9x-Next ==="
|
|
cd libretro-s9x-next/
|
|
make -f Makefile.libretro -j4 || die "Failed to build SNES9x-Next"
|
|
cp libretro.so libretro-snes9x-next.so
|
|
cd ..
|
|
else
|
|
echo "SNES9x-Next not fetched, skipping ..."
|
|
fi
|
|
}
|
|
|
|
build_libretro_genplus()
|
|
{
|
|
if [ -d "libretro-genplus" ]; then
|
|
echo "=== Building Genplus GX ==="
|
|
cd libretro-genplus/
|
|
make -f Makefile.libretro -j4 || die "Failed to build Genplus GX"
|
|
cp libretro.so libretro-genplus.so
|
|
cd ..
|
|
else
|
|
echo "Genplus GX not fetched, skipping ..."
|
|
fi
|
|
}
|
|
|
|
build_libretro_fba()
|
|
{
|
|
if [ -d "libretro-fba" ]; then
|
|
echo "=== Building Final Burn Alpha ==="
|
|
cd libretro-fba/
|
|
./compile_libretro.sh make || die "Failed to build Final Burn Alpha"
|
|
cp svn-new/trunk/libretro.so libretro-fba.so
|
|
cd ..
|
|
else
|
|
echo "Final Burn Alpha not fetched, skipping ..."
|
|
fi
|
|
}
|
|
|
|
build_libretro_vba()
|
|
{
|
|
if [ -d "libretro-vba" ]; then
|
|
echo "=== Building VBA-Next ==="
|
|
cd libretro-vba/
|
|
make -f Makefile.libretro -j4 || die "Failed to build VBA-Next"
|
|
cp libretro.so libretro-vba.so
|
|
cd ..
|
|
else
|
|
echo "VBA-Next not fetched, skipping ..."
|
|
fi
|
|
}
|
|
|
|
build_libretro_bnes()
|
|
{
|
|
if [ -d "libretro-bnes" ]; then
|
|
echo "=== Building bNES ==="
|
|
cd libretro-bnes
|
|
mkdir -p obj
|
|
make -j4 || die "Failed to build bNES"
|
|
cp libretro.so libretro-bnes.so
|
|
cd ..
|
|
else
|
|
echo "bNES not fetched, skipping ..."
|
|
fi
|
|
}
|
|
|
|
build_libretro_fceu()
|
|
{
|
|
if [ -d "libretro-fceu" ]; then
|
|
echo "=== Building FCEU ==="
|
|
cd libretro-fceu
|
|
make -C src-fceumm -f Makefile.libretro -j4 || die "Failed to build FCEU"
|
|
cp src-fceumm/libretro.so libretro-fceu.so
|
|
cd ..
|
|
else
|
|
echo "FCEU not fetched, skipping ..."
|
|
fi
|
|
}
|
|
|
|
build_libretro_gambatte()
|
|
{
|
|
if [ -d "libretro-gambatte" ]; then
|
|
echo "=== Building Gambatte ==="
|
|
cd libretro-gambatte/libgambatte
|
|
make -f Makefile.libretro -j4 || die "Failed to build Gambatte"
|
|
cp libretro.so ../libretro-gambatte.so
|
|
cd ../..
|
|
else
|
|
echo "Gambatte not fetched, skipping ..."
|
|
fi
|
|
}
|
|
|
|
build_libretro_meteor()
|
|
{
|
|
if [ -d "libretro-meteor" ]; then
|
|
echo "=== Building Meteor ==="
|
|
cd libretro-meteor/libretro
|
|
make -j4 || die "Failed to build Meteor"
|
|
cp libretro.so ../libretro-meteor.so
|
|
cd ../..
|
|
else
|
|
echo "Meteor not fetched, skipping ..."
|
|
fi
|
|
}
|
|
|
|
build_libretro_nx()
|
|
{
|
|
if [ -d "libretro-nx" ]; then
|
|
echo "=== Building NXEngine ==="
|
|
cd libretro-nx/nxengine-1.0.0.4
|
|
make -j4 || die "Failed to build NXEngine"
|
|
cp libretro.so ../libretro-nx.so
|
|
cd ../..
|
|
else
|
|
echo "NXEngine not fetched, skipping ..."
|
|
fi
|
|
}
|
|
|
|
build_libretro_prboom()
|
|
{
|
|
if [ -d "libretro-prboom" ]; then
|
|
echo "=== Building PRBoom ==="
|
|
cd libretro-prboom
|
|
make -j4 || die "Failed to build PRBoom"
|
|
cp libretro.so libretro-prboom.so
|
|
cd ../
|
|
else
|
|
echo "PRBoom not fetched, skipping ..."
|
|
fi
|
|
}
|
|
|
|
build_libretro_stella()
|
|
{
|
|
if [ -d "libretro-stella" ]; then
|
|
echo "=== Building Stella ==="
|
|
cd libretro-stella
|
|
make -j4 || die "Failed to build Stella"
|
|
cp libretro.so libretro-stella.so
|
|
cd ../
|
|
else
|
|
echo "Stella not fetched, skipping ..."
|
|
fi
|
|
}
|
|
|
|
build_libretro_desmume()
|
|
{
|
|
if [ -d "libretro-desmume" ]; then
|
|
echo "=== Building Desmume ==="
|
|
cd libretro-desmume
|
|
make -f Makefile.libretro -j4 || die "Failed to build Desmume"
|
|
cp libretro.so libretro-desmume.so
|
|
cd ../
|
|
else
|
|
echo "Desmume not fetched, skipping ..."
|
|
fi
|
|
}
|
|
|
|
build_libretro_quicknes()
|
|
{
|
|
if [ -d "libretro-quicknes" ]; then
|
|
echo "=== Building QuickNES ==="
|
|
cd libretro-quicknes/libretro
|
|
make -j4 || die "Failed to build QuickNES"
|
|
cp libretro.so ../libretro-quicknes.so
|
|
cd ../..
|
|
else
|
|
echo "QuickNES not fetched, skipping ..."
|
|
fi
|
|
}
|
|
|
|
|
|
build_libretro_bsnes
|
|
build_libretro_mednafen
|
|
build_libretro_s9x
|
|
build_libretro_s9x_next
|
|
build_libretro_genplus
|
|
build_libretro_fba
|
|
build_libretro_vba
|
|
build_libretro_bnes
|
|
build_libretro_fceu
|
|
build_libretro_gambatte
|
|
build_libretro_meteor
|
|
build_libretro_nx
|
|
build_libretro_prboom
|
|
build_libretro_stella
|
|
build_libretro_desmume
|
|
build_libretro_quicknes
|
|
|