2013-12-09 01:10:42 +00:00
|
|
|
#!/bin/bash
|
2013-04-30 15:37:28 +00:00
|
|
|
|
|
|
|
SCRIPT=$(readlink -f $0)
|
|
|
|
BASE_DIR=$(dirname $SCRIPT)
|
|
|
|
RARCH_DIR=$BASE_DIR/dist
|
|
|
|
RARCH_DIST_DIR=$RARCH_DIR/qnx
|
|
|
|
FORMAT=_qnx
|
|
|
|
FORMAT_COMPILER_TARGET=qnx
|
|
|
|
FORMAT_COMPILER_TARGET_ALT=qnx
|
|
|
|
FORMAT_EXT=so
|
|
|
|
JOBS=7
|
2013-05-18 23:40:51 +00:00
|
|
|
MAKE=make
|
2013-04-30 15:37:28 +00:00
|
|
|
|
2013-05-18 22:17:06 +00:00
|
|
|
. ./libretro-build-common.sh
|
2013-04-30 15:37:28 +00:00
|
|
|
|
2013-05-03 15:22:09 +00:00
|
|
|
if [ $1 ]; then
|
|
|
|
$1
|
|
|
|
else
|
2014-01-18 00:02:56 +00:00
|
|
|
build_libretro_bsnes_cplusplus98
|
2013-12-16 00:42:37 +00:00
|
|
|
#build_libretro_bsnes
|
2013-05-03 15:22:09 +00:00
|
|
|
build_libretro_mednafen
|
|
|
|
build_libretro_mednafen_gba
|
2013-12-16 00:42:37 +00:00
|
|
|
build_libretro_mednafen_psx
|
2013-05-18 19:37:43 +00:00
|
|
|
build_libretro_s9x
|
2013-05-03 15:22:09 +00:00
|
|
|
build_libretro_s9x_next
|
|
|
|
build_libretro_genplus
|
|
|
|
build_libretro_fba_full
|
2013-10-31 16:54:26 +00:00
|
|
|
build_libretro_vbam
|
2013-08-15 12:50:25 +00:00
|
|
|
build_libretro_vba_next
|
2013-12-16 00:42:37 +00:00
|
|
|
#build_libretro_bnes
|
2013-05-03 15:22:09 +00:00
|
|
|
build_libretro_fceu
|
|
|
|
build_libretro_gambatte
|
2013-12-16 00:42:37 +00:00
|
|
|
#build_libretro_meteor
|
2013-05-03 15:22:09 +00:00
|
|
|
build_libretro_nx
|
|
|
|
build_libretro_prboom
|
2013-12-16 00:26:59 +00:00
|
|
|
build_libretro_stella
|
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
|
2013-06-28 03:02:08 +00:00
|
|
|
build_libretro_mame078
|
2013-12-16 00:42:37 +00:00
|
|
|
#build_libretro_mame
|
|
|
|
#build_libretro_dosbox
|
2014-01-18 00:02:56 +00:00
|
|
|
build_libretro_scummvm
|
2013-06-30 16:27:53 +00:00
|
|
|
build_libretro_picodrive
|
2013-12-16 00:38:48 +00:00
|
|
|
build_libretro_handy
|
2013-12-16 00:42:37 +00:00
|
|
|
#build_libretro_desmume
|
|
|
|
build_libretro_pcsx_rearmed
|
2013-05-18 00:53:55 +00:00
|
|
|
build_libretro_modelviewer
|
|
|
|
build_libretro_scenewalker
|
2013-12-16 00:42:37 +00:00
|
|
|
build_libretro_instancingviewer
|
|
|
|
build_libretro_instancingviewer_camera
|
|
|
|
#build_libretro_mupen64
|
|
|
|
#build_libretro_ffmpeg
|
|
|
|
#build_libretro_dinothawr
|
2013-05-03 15:22:09 +00:00
|
|
|
fi
|