* Add Dinothawr compilation (libretro-build-common.sh)

This commit is contained in:
twinaphex 2013-09-23 04:16:28 +02:00
parent d61fc504c8
commit a69c7f4b9b
2 changed files with 15 additions and 0 deletions

View File

@ -381,6 +381,20 @@ build_libretro_prboom()
fi
}
build_libretro_dinothawr()
{
cd "$BASE_DIR"
if [ -d "libretro-dinothawr" ]; then
echo "=== Building Dinothawr ==="
cd libretro-dinothawr
${MAKE} platform=${FORMAT_COMPILER_TARGET_ALT} $COMPILER -j$JOBS clean || die "Failed to clean Dinothawr"
${MAKE} platform=${FORMAT_COMPILER_TARGET_ALT} $COMPILER -j$JOBS || die "Failed to build Dinothawr"
cp dinothawr_libretro${FORMAT}.${FORMAT_EXT} "$RARCH_DIST_DIR"
else
echo "Dinothawr not fetched, skipping ..."
fi
}
build_libretro_meteor()
{
cd "$BASE_DIR"

View File

@ -123,4 +123,5 @@ if [ -z $BUILD_EXPERIMENTAL ]; then
build_libretro_mupen64
fi
build_libretro_ffmpeg
build_libretro_dinothawr
fi