2013-12-08 17:10:42 -08:00
|
|
|
#!/bin/bash
|
2013-02-10 18:30:38 +01:00
|
|
|
|
2014-07-26 18:56:49 -07:00
|
|
|
. ./libretro-config.sh
|
|
|
|
|
2014-08-17 22:07:05 -07:00
|
|
|
#split TARGET_ABI string into an array we can iterate over
|
|
|
|
IFS=' ' read -ra ABIS <<< "$TARGET_ABIS"
|
|
|
|
|
2013-07-12 17:31:12 +02:00
|
|
|
# BSDs don't have readlink -f
|
|
|
|
read_link()
|
|
|
|
{
|
|
|
|
TARGET_FILE="$1"
|
|
|
|
cd $(dirname "$TARGET_FILE")
|
|
|
|
TARGET_FILE=$(basename "$TARGET_FILE")
|
|
|
|
|
|
|
|
while [ -L "$TARGET_FILE" ]
|
|
|
|
do
|
|
|
|
TARGET_FILE=$(readlink "$TARGET_FILE")
|
|
|
|
cd $(dirname "$TARGET_FILE")
|
|
|
|
TARGET_FILE=$(basename "$TARGET_FILE")
|
|
|
|
done
|
|
|
|
|
|
|
|
PHYS_DIR=$(pwd -P)
|
|
|
|
RESULT="$PHYS_DIR/$TARGET_FILE"
|
|
|
|
echo $RESULT
|
|
|
|
}
|
|
|
|
|
|
|
|
SCRIPT=$(read_link "$0")
|
|
|
|
echo "Script: $SCRIPT"
|
2013-04-29 22:12:35 +02:00
|
|
|
BASE_DIR=$(dirname $SCRIPT)
|
|
|
|
RARCH_DIR=$BASE_DIR/dist
|
2013-04-29 22:36:13 +02:00
|
|
|
RARCH_DIST_DIR=$RARCH_DIR/android
|
2013-10-30 02:11:09 +01:00
|
|
|
FORMAT=_android
|
2013-05-18 02:11:06 +02:00
|
|
|
FORMAT_EXT=so
|
2013-07-12 17:31:12 +02:00
|
|
|
|
2013-02-10 18:30:38 +01:00
|
|
|
die()
|
|
|
|
{
|
|
|
|
echo $1
|
|
|
|
#exit 1
|
|
|
|
}
|
|
|
|
|
2014-06-23 01:50:36 +02:00
|
|
|
|
2014-06-22 23:34:25 +02:00
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
# $1 is core name
|
2014-08-22 13:40:22 +02:00
|
|
|
# $2 is subdir (if there's no subdir, put "." here)
|
|
|
|
build_libretro_generic_makefile()
|
2014-06-21 18:34:11 +02:00
|
|
|
{
|
|
|
|
cd $BASE_DIR
|
2014-08-22 13:13:37 +02:00
|
|
|
if [ -d "libretro-${1}" ]; then
|
|
|
|
echo "=== Building ${1} ==="
|
|
|
|
cd libretro-${1}
|
2014-08-22 13:40:22 +02:00
|
|
|
cd ${2}
|
2014-08-17 22:07:05 -07:00
|
|
|
for a in "${ABIS[@]}"; do
|
2014-08-18 10:12:49 -07:00
|
|
|
if [ -z "${NOCLEAN}" ]; then
|
2014-08-22 13:13:37 +02:00
|
|
|
ndk-build clean APP_ABI=${a} || die "Failed to clean ${a} ${1}"
|
2014-08-18 10:12:49 -07:00
|
|
|
fi
|
2014-08-22 13:13:37 +02:00
|
|
|
ndk-build -j$JOBS APP_ABI=${a} || die "Failed to build ${a} ${1}"
|
|
|
|
cp ../libs/${a}/libretro.${FORMAT_EXT} $RARCH_DIST_DIR/${a}/${1}_libretro${FORMAT}.${FORMAT_EXT}
|
2014-08-17 22:07:05 -07:00
|
|
|
done
|
2014-06-21 18:34:11 +02:00
|
|
|
else
|
2014-08-22 13:13:37 +02:00
|
|
|
echo "${1} not fetched, skipping ..."
|
2014-06-21 18:34:11 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_2048() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "2048" "jni"
|
2014-06-22 02:12:59 +02:00
|
|
|
}
|
|
|
|
|
2014-11-01 22:33:51 +01:00
|
|
|
build_libretro_4do() {
|
|
|
|
build_libretro_generic_makefile "4do" "jni"
|
|
|
|
}
|
|
|
|
|
2014-11-12 23:00:46 -06:00
|
|
|
build_libretro_bluemsx() {
|
|
|
|
build_libretro_generic_makefile "bluemsx" "jni"
|
|
|
|
}
|
|
|
|
|
2014-11-01 23:42:26 +01:00
|
|
|
build_libretro_fmsx() {
|
|
|
|
build_libretro_generic_makefile "fmsx" "jni"
|
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_stella() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "stella" "jni"
|
2014-06-18 20:30:58 +02:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_genesis_plus_gx() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "genesis_plus_gx" "libretro/jni"
|
2014-06-22 03:14:12 +02:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_vba_next() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "vba_next" "libretro/jni"
|
|
|
|
}
|
|
|
|
|
|
|
|
build_libretro_vbam() {
|
2014-09-18 16:56:51 -05:00
|
|
|
build_libretro_generic_makefile "vbam" "src/libretro/jni"
|
2014-06-21 18:22:10 +02:00
|
|
|
}
|
|
|
|
|
2014-11-01 08:29:23 +01:00
|
|
|
build_libretro_catsfc() {
|
|
|
|
build_libretro_generic_makefile "catsfc" "jni"
|
|
|
|
}
|
|
|
|
|
2014-11-01 22:13:07 +01:00
|
|
|
build_libretro_prosystem() {
|
|
|
|
build_libretro_generic_makefile "prosystem" "jni"
|
|
|
|
}
|
|
|
|
|
|
|
|
build_libretro_tgbdual() {
|
|
|
|
build_libretro_generic_makefile "tgbdual" "libretro/jni"
|
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_snes9x() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "snes9x" "libretro/jni"
|
2014-06-19 01:38:24 +02:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_snes9x_next() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "snes9x_next" "libretro/jni"
|
2014-06-22 05:13:43 +02:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_beetle_bsnes() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "mednafen_snes" "jni"
|
2013-07-31 12:49:36 +02:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_beetle_lynx() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "mednafen_lynx" "jni"
|
2013-02-10 18:30:38 +01:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_beetle_gba() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "mednafen_gba" "jni"
|
2014-07-29 19:19:15 +02:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_beetle_ngp() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "mednafen_ngp" "jni"
|
2013-07-31 02:05:30 +02:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_beetle_wswan() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "mednafen_wswan" "jni"
|
2013-02-10 18:30:38 +01:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_beetle_psx() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "mednafen_psx" "jni"
|
2013-02-10 18:30:38 +01:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_beetle_pcfx() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "mednafen_pcfx" "jni"
|
2013-10-31 17:54:26 +01:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_beetle_vb() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "mednafen_vb" "jni"
|
2014-08-22 13:13:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
build_libretro_beetle_pce_fast() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "mednafen_pce_fast" "jni"
|
2014-08-22 13:13:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
build_libretro_beetle_supergrafx() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "mednafen_supergrafx" "jni"
|
2013-02-10 18:30:38 +01:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_nx() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "nxengine" "jni"
|
2013-02-10 18:30:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
build_libretro_prboom()
|
|
|
|
{
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "prboom" "libretro/jni"
|
2013-09-23 04:21:31 +02:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_nestopia() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "nestopia" "libretro/jni"
|
2013-02-10 18:30:38 +01:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_tyrquake() {
|
|
|
|
build_libretro_generic_makefile "tyrquake" "libretro/jni"
|
2013-02-10 18:30:38 +01:00
|
|
|
}
|
|
|
|
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_pcsx_rearmed() {
|
|
|
|
build_libretro_generic_makefile "pcsx_rearmed" "jni"
|
2014-08-22 13:13:37 +02:00
|
|
|
}
|
|
|
|
|
2014-11-01 23:26:32 +01:00
|
|
|
build_libretro_ppsspp() {
|
|
|
|
build_libretro_generic_makefile "ppsspp" "libretro/jni"
|
|
|
|
}
|
2014-08-22 13:40:22 +02:00
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_picodrive() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "picodrive" "jni"
|
2014-08-22 13:13:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
build_libretro_quicknes() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "quicknes" "libretro/jni"
|
2014-08-22 13:13:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
build_libretro_handy() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "handy" "libretro/jni"
|
2014-08-22 13:13:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
build_libretro_yabause() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "yabause" "libretro/jni"
|
2014-08-22 13:13:37 +02:00
|
|
|
}
|
|
|
|
|
2014-11-01 08:04:41 +01:00
|
|
|
build_libretro_vecx() {
|
|
|
|
build_libretro_generic_makefile "vecx" "libretro/jni"
|
|
|
|
}
|
|
|
|
|
2014-08-22 13:13:37 +02:00
|
|
|
build_libretro_mupen64()
|
2013-03-10 18:16:49 +01:00
|
|
|
{
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "mupen64plus" "libretro/jni"
|
2013-03-10 18:16:49 +01:00
|
|
|
}
|
|
|
|
|
2014-01-20 11:01:06 +01:00
|
|
|
build_libretro_3dengine() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "3dengine" "jni"
|
|
|
|
}
|
|
|
|
|
2014-11-01 22:22:00 +01:00
|
|
|
build_libretro_o2em() {
|
|
|
|
build_libretro_generic_makefile "o2em" "jni"
|
|
|
|
}
|
|
|
|
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_fceumm() {
|
|
|
|
build_libretro_generic_makefile "fceumm" "src/drivers/libretro/jni"
|
|
|
|
}
|
|
|
|
|
|
|
|
build_libretro_gambatte() {
|
|
|
|
build_libretro_generic_makefile "gambatte" "libgambatte/libretro/jni"
|
|
|
|
}
|
|
|
|
|
2014-11-02 21:10:50 +01:00
|
|
|
build_libretro_meteor() {
|
|
|
|
build_libretro_generic_makefile "meteor" "libretro/jni"
|
|
|
|
}
|
|
|
|
|
2014-08-22 13:40:22 +02:00
|
|
|
|
|
|
|
build_libretro_dinothawr() {
|
|
|
|
build_libretro_generic_makefile "dinothawr" "android/eclipse/jni"
|
2014-01-20 11:01:06 +01:00
|
|
|
}
|
|
|
|
|
2014-11-01 09:27:34 +01:00
|
|
|
build_libretro_virtualjaguar() {
|
|
|
|
build_libretro_generic_makefile "virtualjaguar" "jni"
|
|
|
|
}
|
|
|
|
|
2014-08-22 15:39:20 +02:00
|
|
|
build_libretro_desmume() {
|
2014-08-22 13:40:22 +02:00
|
|
|
build_libretro_generic_makefile "desmume" "desmume/src/libretro/jni"
|
2013-07-31 15:47:58 +02:00
|
|
|
}
|
|
|
|
|
2014-08-22 15:39:20 +02:00
|
|
|
build_libretro_fb_alpha() {
|
|
|
|
build_libretro_generic_makefile "fb_alpha" "svn-current/trunk/projectfiles/libretro-android/jni"
|
|
|
|
}
|
2013-07-31 15:37:07 +02:00
|
|
|
|
2013-04-29 22:12:35 +02:00
|
|
|
create_dist_dir()
|
|
|
|
{
|
|
|
|
if [ -d $RARCH_DIR ]; then
|
|
|
|
echo "Directory $RARCH_DIR already exists, skipping creation..."
|
|
|
|
else
|
|
|
|
mkdir $RARCH_DIR
|
|
|
|
fi
|
|
|
|
|
2013-04-29 22:36:13 +02:00
|
|
|
if [ -d $RARCH_DIST_DIR ]; then
|
|
|
|
echo "Directory $RARCH_DIST_DIR already exists, skipping creation..."
|
2013-04-29 22:12:35 +02:00
|
|
|
else
|
2013-04-29 22:36:13 +02:00
|
|
|
mkdir $RARCH_DIST_DIR
|
2013-04-29 22:12:35 +02:00
|
|
|
fi
|
2014-08-20 10:46:07 -07:00
|
|
|
|
|
|
|
for a in "${ABIS[@]}"; do
|
|
|
|
if [ -d $RARCH_DIST_DIR/${a} ]; then
|
|
|
|
echo "Directory $RARCH_DIST_DIR/${a} already exists, skipping creation..."
|
|
|
|
else
|
|
|
|
mkdir $RARCH_DIST_DIR/${a}
|
|
|
|
fi
|
|
|
|
done
|
2013-04-29 22:12:35 +02:00
|
|
|
}
|
|
|
|
|
2013-12-16 02:15:02 +01:00
|
|
|
build_libretro_bsnes()
|
2013-09-05 23:01:33 -07:00
|
|
|
{
|
2014-08-11 11:11:34 -07:00
|
|
|
CORENAME="bsnes"
|
2013-12-16 02:15:02 +01:00
|
|
|
#TODO - maybe accuracy/balanced cores as well
|
2013-09-05 23:01:33 -07:00
|
|
|
cd $BASE_DIR
|
2014-08-11 11:11:34 -07:00
|
|
|
if [ -d "libretro-${CORENAME}" ]; then
|
2014-08-11 11:25:14 -07:00
|
|
|
echo "=== Building ${CORENAME} ==="
|
2014-08-11 11:11:34 -07:00
|
|
|
cd libretro-${CORENAME}/
|
2014-11-01 08:04:41 +01:00
|
|
|
cd target-libretro/jni
|
2014-08-17 22:07:05 -07:00
|
|
|
for a in "${ABIS[@]}"; do
|
2014-08-20 10:46:07 -07:00
|
|
|
if [ -z "${NOCLEAN}" ]; then
|
|
|
|
ndk-build clean APP_ABI=${a} || die "Failed to clean ${a} ${CORENAME}"
|
|
|
|
fi
|
|
|
|
ndk-build -j$JOBS APP_ABI=${a} || die "Failed to build ${a} ${CORENAME}"
|
2014-11-02 21:40:26 +01:00
|
|
|
cp ../libs/${a}/libretro_${CORENAME}_performance.${FORMAT_EXT} $RARCH_DIST_DIR/${a}/${CORENAME}_performance_libretro${FORMAT}.${FORMAT_EXT}
|
|
|
|
done
|
|
|
|
else
|
|
|
|
echo "${CORENAME} not fetched, skipping ..."
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
build_libretro_bsnes_mercury()
|
|
|
|
{
|
|
|
|
CORENAME="bsnes"
|
|
|
|
#TODO - maybe accuracy/balanced cores as well
|
|
|
|
cd $BASE_DIR
|
|
|
|
if [ -d "libretro-${CORENAME}" ]; then
|
|
|
|
echo "=== Building ${CORENAME}-mercury ==="
|
|
|
|
cd libretro-${CORENAME}/
|
|
|
|
cd target-libretro/jni
|
|
|
|
for a in "${ABIS[@]}"; do
|
|
|
|
if [ -z "${NOCLEAN}" ]; then
|
|
|
|
ndk-build clean APP_ABI=${a} || die "Failed to clean ${a} ${CORENAME}"
|
|
|
|
fi
|
|
|
|
ndk-build -j$JOBS APP_ABI=${a} || die "Failed to build ${a} ${CORENAME}"
|
|
|
|
cp ../libs/${a}/libretro_${CORENAME}_performance.${FORMAT_EXT} $RARCH_DIST_DIR/${a}/${CORENAME}_mercury_performance_libretro${FORMAT}.${FORMAT_EXT}
|
2014-08-17 22:07:05 -07:00
|
|
|
done
|
2013-09-05 23:01:33 -07:00
|
|
|
else
|
2014-08-11 11:25:14 -07:00
|
|
|
echo "${CORENAME} not fetched, skipping ..."
|
2013-09-05 23:01:33 -07:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-10-19 20:22:44 +02:00
|
|
|
|
2014-07-13 04:22:50 +02:00
|
|
|
|
2013-04-29 22:12:35 +02:00
|
|
|
create_dist_dir
|
|
|
|
|
2013-05-03 17:22:09 +02:00
|
|
|
if [ $1 ]; then
|
|
|
|
$1
|
|
|
|
else
|
2014-07-29 19:19:15 +02:00
|
|
|
build_libretro_2048
|
2014-11-01 22:33:51 +01:00
|
|
|
build_libretro_4do
|
2014-11-01 09:27:34 +01:00
|
|
|
#build_libretro_bluemsx
|
2014-11-01 23:42:26 +01:00
|
|
|
build_libretro_fmsx
|
2013-12-16 02:15:02 +01:00
|
|
|
#build_libretro_bsnes_cplusplus98
|
|
|
|
build_libretro_bsnes
|
2014-11-02 21:40:26 +01:00
|
|
|
build_libretro_bsnes_mercury
|
2014-06-23 01:50:36 +02:00
|
|
|
build_libretro_beetle_lynx
|
2014-11-01 08:04:41 +01:00
|
|
|
#build_libretro_beetle_gba
|
2014-06-22 23:34:25 +02:00
|
|
|
build_libretro_beetle_ngp
|
|
|
|
build_libretro_beetle_pce_fast
|
|
|
|
build_libretro_beetle_supergrafx
|
|
|
|
build_libretro_beetle_pcfx
|
|
|
|
build_libretro_beetle_vb
|
|
|
|
build_libretro_beetle_wswan
|
|
|
|
build_libretro_beetle_psx
|
2014-11-01 08:04:41 +01:00
|
|
|
#build_libretro_beetle_bsnes
|
2014-11-01 08:29:23 +01:00
|
|
|
build_libretro_catsfc
|
2014-08-22 12:17:52 +02:00
|
|
|
build_libretro_snes9x
|
|
|
|
build_libretro_snes9x_next
|
2014-08-22 12:28:27 +02:00
|
|
|
build_libretro_genesis_plus_gx
|
2014-08-22 15:39:20 +02:00
|
|
|
build_libretro_fb_alpha
|
2013-10-31 17:54:26 +01:00
|
|
|
build_libretro_vbam
|
2013-08-15 14:50:25 +02:00
|
|
|
build_libretro_vba_next
|
2013-12-16 02:15:02 +01:00
|
|
|
#build_libretro_bnes
|
2014-04-14 05:53:23 +02:00
|
|
|
build_libretro_fceumm
|
2013-05-03 17:22:09 +02:00
|
|
|
build_libretro_gambatte
|
2014-11-02 21:10:50 +01:00
|
|
|
build_libretro_meteor
|
2013-05-03 17:22:09 +02:00
|
|
|
build_libretro_nx
|
|
|
|
build_libretro_prboom
|
2013-07-31 15:47:58 +02:00
|
|
|
build_libretro_stella
|
|
|
|
build_libretro_quicknes
|
2013-05-03 17:22:09 +02:00
|
|
|
build_libretro_nestopia
|
|
|
|
build_libretro_tyrquake
|
2013-12-16 02:15:02 +01:00
|
|
|
#build_libretro_mame078
|
|
|
|
#build_libretro_mame
|
|
|
|
#build_libretro_dosbox
|
|
|
|
#build_libretro_scummvm
|
|
|
|
build_libretro_picodrive
|
|
|
|
build_libretro_handy
|
|
|
|
build_libretro_desmume
|
|
|
|
build_libretro_pcsx_rearmed
|
2014-07-13 04:22:50 +02:00
|
|
|
build_libretro_yabause
|
2014-11-01 08:04:41 +01:00
|
|
|
build_libretro_vecx
|
2014-11-01 22:13:07 +01:00
|
|
|
build_libretro_tgbdual
|
|
|
|
build_libretro_prosystem
|
2013-09-23 04:21:31 +02:00
|
|
|
build_libretro_dinothawr
|
2014-11-01 09:27:34 +01:00
|
|
|
build_libretro_virtualjaguar
|
|
|
|
build_libretro_mupen64
|
|
|
|
#build_libretro_ffmpeg
|
2014-03-09 21:11:12 +01:00
|
|
|
build_libretro_3dengine
|
2014-11-01 09:27:34 +01:00
|
|
|
#build_libretro_ppsspp
|
2014-11-01 22:20:52 +01:00
|
|
|
build_libretro_o2em
|
2013-05-03 17:22:09 +02:00
|
|
|
fi
|