Add mednafen/psx.

This commit is contained in:
Themaister 2012-08-28 09:49:17 +02:00
parent 5717efdaa3
commit cf23b51103
3 changed files with 16 additions and 0 deletions

View File

@ -185,6 +185,19 @@ build_libretro_prboom()
fi
}
build_libretro_mednafen_psx()
{
if [ -d "libretro-mednafen-psx" ]; then
echo "=== Building Mednafen/PSX ==="
cd libretro-mednafen-psx
make -j4 || die "Failed to build Mednafen/PSX"
cp libretro.so libretro-mednafen-psx.so
cd ../
else
echo "Mednafen/PSX not fetched, skipping ..."
fi
}
build_libretro_bsnes
build_libretro_s9x
build_libretro_s9x_next
@ -197,4 +210,5 @@ build_libretro_gambatte
build_libretro_meteor
build_libretro_nx
build_libretro_prboom
build_libretro_mednafen_psx

View File

@ -63,4 +63,5 @@ fetch_project "$REPO_BASE/libretro/gambatte-libretro.git" "libretro-gambatte" "l
fetch_project "$REPO_BASE/libretro/meteor-libretro.git" "libretro-meteor" "libretro/Meteor"
fetch_project "$REPO_BASE/libretro/nxengine-libretro.git" "libretro-nx" "libretro/NX"
fetch_project "$REPO_BASE/libretro/libretro-prboom.git" "libretro-prboom" "libretro/PRBoom"
fetch_project "$REPO_BASE/libretro/mednafen-psx-libretro.git" "libretro-mednafen-psx" "libretro/mednafen-PSX"

View File

@ -25,6 +25,7 @@ LIBS="$LIBS libretro-gambatte/libretro-gambatte.so"
LIBS="$LIBS libretro-meteor/libretro-meteor.so"
LIBS="$LIBS libretro-nx/libretro-nx.so"
LIBS="$LIBS libretro-prboom/libretro-prboom.so"
LIBS="$LIBS libretro-mednafen-psx/libretro-mednafen-psx.so"
for lib in $LIBS
do