mirror of
https://github.com/libretro/libretro-super
synced 2025-01-05 21:54:33 +00:00
Add Handy port
This commit is contained in:
parent
7dd81ab1f3
commit
a7171b8f95
@ -180,6 +180,21 @@ build_libretro_stella()
|
||||
fi
|
||||
}
|
||||
|
||||
build_libretro_handy()
|
||||
{
|
||||
cd "$BASE_DIR"
|
||||
if [ -d "libretro-handy" ]; then
|
||||
echo "=== Building Handy ==="
|
||||
cd libretro-handy
|
||||
${MAKE} -f Makefile platform=${FORMAT_COMPILER_TARGET} $COMPILER clean
|
||||
${MAKE} -f Makefile platform=${FORMAT_COMPILER_TARGET} $COMPILER -j$JOBS
|
||||
|
||||
cp handy_libretro${FORMAT}.${FORMAT_EXT} "$RARCH_DIST_DIR"
|
||||
else
|
||||
echo "Handy not fetched, skipping ..."
|
||||
fi
|
||||
}
|
||||
|
||||
build_libretro_quicknes()
|
||||
{
|
||||
cd "$BASE_DIR"
|
||||
|
@ -84,14 +84,12 @@ mkdir -p "$RARCH_DIST_DIR"
|
||||
if [ $1 ]; then
|
||||
$1
|
||||
else
|
||||
if [ -z $BUILD_LIBRETRO_GL ]; then
|
||||
build_libretro_modelviewer
|
||||
build_libretro_scenewalker
|
||||
build_libretro_instancingviewer
|
||||
if [ -z $BUILD_EXPERIMENTAL ]; then
|
||||
build_libretro_mupen64
|
||||
build_libretro_ffmpeg
|
||||
fi
|
||||
fi
|
||||
build_libretro_bsnes
|
||||
build_libretro_mednafen
|
||||
@ -117,6 +115,7 @@ fi
|
||||
build_libretro_dosbox
|
||||
build_libretro_scummvm
|
||||
build_libretro_picodrive
|
||||
build_libretro_handy
|
||||
if [ $FORMAT_COMPILER_TARGET != "win" ]; then
|
||||
build_libretro_desmume
|
||||
build_libretro_pcsx_rearmed
|
||||
|
@ -80,6 +80,7 @@ fetch_project "$REPO_BASE/libretro/snes9x-next.git" "libretro-s9x-next" "libretr
|
||||
fetch_project "$REPO_BASE/libretro/Genesis-Plus-GX.git" "libretro-genplus" "libretro/Genplus GX"
|
||||
fetch_project "$REPO_BASE/libretro/fba-libretro.git" "libretro-fba" "libretro/FBA"
|
||||
fetch_project "$REPO_BASE/libretro/vba-next.git" "libretro-vba-next" "libretro/VBA"
|
||||
fetch_project "$REPO_BASE/libretro/libretro-handy.git" "libretro-handy" "libretro/Handy"
|
||||
fetch_project "$REPO_BASE/libretro/bnes-libretro.git" "libretro-bnes" "libretro/bNES"
|
||||
fetch_project "$REPO_BASE/libretro/fceu-next.git" "libretro-fceu" "libretro/FCEU"
|
||||
fetch_project "$REPO_BASE/libretro/gambatte-libretro.git" "libretro-gambatte" "libretro/Gambatte"
|
||||
|
Loading…
Reference in New Issue
Block a user