Add build_libretro_prosystem

This commit is contained in:
twinaphex 2014-08-08 19:32:30 +02:00
parent 54be81021c
commit 4ead959a8d
2 changed files with 17 additions and 0 deletions

View File

@ -496,6 +496,22 @@ build_libretro_vecx() {
fi fi
} }
build_libretro_prosystem() {
cd "${BASE_DIR}"
if [ -d 'libretro-prosystem' ]; then
echo '=== Building ProSystem ==='
cd libretro-prosystem/
if [ -z "${NOCLEAN}" ]; then
"${MAKE}" -f Makefile platform="${FORMAT_COMPILER_TARGET}" ${COMPILER} "-j${JOBS}" clean || die 'Failed to build ProSystem'
fi
"${MAKE}" -f Makefile platform="${FORMAT_COMPILER_TARGET}" ${COMPILER} "-j${JOBS}" || die 'Failed to build ProSystem'
cp "prosystem_libretro${FORMAT}.${FORMAT_EXT}" "${RARCH_DIST_DIR}"
else
echo 'ProSystem not fetched, skipping ...'
fi
}
build_libretro_genplus() { build_libretro_genplus() {
cd "${BASE_DIR}" cd "${BASE_DIR}"
if [ -d 'libretro-genplus' ]; then if [ -d 'libretro-genplus' ]; then

View File

@ -150,4 +150,5 @@ else
build_libretro_vecx build_libretro_vecx
build_libretro_tgbdual build_libretro_tgbdual
build_libretro_ppsspp build_libretro_ppsspp
build_libretro_prosystem
fi fi