mirror of
https://github.com/libretro/libretro-super.git
synced 2024-11-23 15:59:57 +00:00
Add build_libretro_prosystem
This commit is contained in:
parent
54be81021c
commit
4ead959a8d
@ -496,6 +496,22 @@ build_libretro_vecx() {
|
||||
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() {
|
||||
cd "${BASE_DIR}"
|
||||
if [ -d 'libretro-genplus' ]; then
|
||||
|
@ -150,4 +150,5 @@ else
|
||||
build_libretro_vecx
|
||||
build_libretro_tgbdual
|
||||
build_libretro_ppsspp
|
||||
build_libretro_prosystem
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user