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