2013-12-08 17:10:42 -08:00
|
|
|
#!/bin/bash
|
2013-02-13 00:09:23 +01:00
|
|
|
|
2013-04-29 23:10:43 +02:00
|
|
|
SCRIPT=$(readlink -f $0)
|
|
|
|
BASE_DIR=$(dirname $SCRIPT)
|
|
|
|
RARCH_DIR=$BASE_DIR/dist
|
|
|
|
RARCH_DIST_DIR=$RARCH_DIR/ngc
|
2013-02-13 00:09:23 +01:00
|
|
|
FORMAT=_ngc
|
|
|
|
FORMAT_COMPILER_TARGET=ngc
|
2013-04-29 23:10:43 +02:00
|
|
|
FORMAT_COMPILER_TARGET_ALT=ngc
|
2013-04-30 06:35:47 +02:00
|
|
|
FORMAT_EXT=a
|
2013-02-13 00:09:23 +01:00
|
|
|
JOBS=7
|
2013-05-19 01:40:51 +02:00
|
|
|
MAKE=make
|
2013-02-13 00:09:23 +01:00
|
|
|
|
2013-05-01 23:54:06 +02:00
|
|
|
. ./libretro-build-common-gx.sh
|
2013-05-19 00:17:06 +02:00
|
|
|
. ./libretro-build-common.sh
|
2013-03-01 17:44:21 +01:00
|
|
|
|
2013-05-03 17:22:09 +02:00
|
|
|
if [ $1 ]; then
|
|
|
|
$1
|
|
|
|
else
|
2014-07-07 23:59:13 +02:00
|
|
|
build_libretro_bluemsx
|
|
|
|
build_libretro_fmsx
|
2014-06-23 00:41:47 +02:00
|
|
|
build_libretro_beetle_lynx
|
2014-06-22 23:34:25 +02:00
|
|
|
build_libretro_beetle_gba
|
2014-06-22 02:12:59 +02:00
|
|
|
build_libretro_beetle_ngp
|
|
|
|
build_libretro_beetle_pce_fast
|
2014-06-22 05:13:43 +02:00
|
|
|
build_libretro_beetle_supergrafx
|
2014-06-22 03:14:12 +02:00
|
|
|
build_libretro_beetle_pcfx
|
2014-06-22 02:12:59 +02:00
|
|
|
build_libretro_beetle_vb
|
|
|
|
build_libretro_beetle_wswan
|
2014-06-23 01:50:36 +02:00
|
|
|
build_libretro_beetle_bsnes
|
2014-08-22 12:17:52 +02:00
|
|
|
build_libretro_snes9x_next
|
2014-08-22 12:28:27 +02:00
|
|
|
build_libretro_genesis_plus_gx
|
2013-05-03 17:22:09 +02:00
|
|
|
build_libretro_fba
|
2013-08-15 14:50:25 +02:00
|
|
|
build_libretro_vba_next
|
2014-04-14 05:53:23 +02:00
|
|
|
build_libretro_fceumm
|
2013-05-03 17:22:09 +02:00
|
|
|
build_libretro_gambatte
|
|
|
|
build_libretro_nx
|
|
|
|
build_libretro_prboom
|
2013-05-19 20:33:13 +02:00
|
|
|
build_libretro_quicknes
|
2013-05-03 17:22:09 +02:00
|
|
|
build_libretro_nestopia
|
|
|
|
build_libretro_tyrquake
|
2014-07-13 01:51:07 +02:00
|
|
|
#build_libretro_yabause
|
2013-05-03 17:22:09 +02:00
|
|
|
fi
|