diff options
| author | David-John Willis | 2011-04-12 12:08:46 +0100 |
|---|---|---|
| committer | David-John Willis | 2011-04-13 08:01:15 +0100 |
| commit | da688dbb7f20d08371a160d9fcc29776418d502d (patch) | |
| tree | 46b317015de26186d190b49a2ea59d69eef04534 /backends/platform/gph/build | |
| parent | cb3e3e7125274dba4437f0beb35b461405eb3442 (diff) | |
| download | scummvm-rg350-da688dbb7f20d08371a160d9fcc29776418d502d.tar.gz scummvm-rg350-da688dbb7f20d08371a160d9fcc29776418d502d.tar.bz2 scummvm-rg350-da688dbb7f20d08371a160d9fcc29776418d502d.zip | |
GPH: Move caanoo build support files into device folder in the backend.
Diffstat (limited to 'backends/platform/gph/build')
| -rw-r--r-- | backends/platform/gph/build/caanoo-build.sh | 12 | ||||
| -rw-r--r-- | backends/platform/gph/build/caanoo-bundle-debug.sh | 9 | ||||
| -rw-r--r-- | backends/platform/gph/build/caanoo-bundle.sh | 9 | ||||
| -rw-r--r-- | backends/platform/gph/build/caanoo-config-alleng.sh | 21 | ||||
| -rw-r--r-- | backends/platform/gph/build/caanoo-config.sh | 21 |
5 files changed, 72 insertions, 0 deletions
diff --git a/backends/platform/gph/build/caanoo-build.sh b/backends/platform/gph/build/caanoo-build.sh new file mode 100644 index 0000000000..8000d2595d --- /dev/null +++ b/backends/platform/gph/build/caanoo-build.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +echo Quick script to make building all the time less painful. + +# Set the paths up here to support the build. + +cd ../../../.. + +echo Building ScummVM for GP2X Caanoo. +make + +echo Build for GP2X Caanoo - complete - Please check build logs. diff --git a/backends/platform/gph/build/caanoo-bundle-debug.sh b/backends/platform/gph/build/caanoo-bundle-debug.sh new file mode 100644 index 0000000000..2d5cefe80e --- /dev/null +++ b/backends/platform/gph/build/caanoo-bundle-debug.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +echo Quick script to make building a distribution of the GP2X Caanoo backend more consistent. + +cd ../../../.. + +echo Building ScummVM for GP2X Caanoo. + +make caanoo-bundle-debug diff --git a/backends/platform/gph/build/caanoo-bundle.sh b/backends/platform/gph/build/caanoo-bundle.sh new file mode 100644 index 0000000000..76fd31cec6 --- /dev/null +++ b/backends/platform/gph/build/caanoo-bundle.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +echo Quick script to make building a distribution of the GP2X Caanoo backend more consistent. + +cd ../../../.. + +echo Building ScummVM for GP2X Caanoo. + +make caanoo-bundle diff --git a/backends/platform/gph/build/caanoo-config-alleng.sh b/backends/platform/gph/build/caanoo-config-alleng.sh new file mode 100644 index 0000000000..97fed942fa --- /dev/null +++ b/backends/platform/gph/build/caanoo-config-alleng.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +echo Quick script to make running configure all the time less painful +echo and let all the build work be done from the backend/build folder. + +# Assume Caanoo toolchain/build env and source it. +. /opt/arm-caanoo/environment-setup + +# Edit the configure line to suit. +cd ../../../.. +./configure --backend=caanoo --disable-mt32emu --host=caanoo --disable-alsa --disable-flac \ + --disable-nasm --disable-vorbis --disable-hq-scalers \ + --with-sdl-prefix=/opt/arm-caanoo/arm-none-linux-gnueabi/usr/bin \ + --with-mpeg2-prefix=/opt/arm-caanoo/arm-none-linux-gnueabi/usr \ + --enable-tremor --with-tremor-prefix=/opt/arm-caanoo/arm-none-linux-gnueabi/usr \ + --enable-zlib --with-zlib-prefix=/opt/arm-caanoo/arm-none-linux-gnueabi/usr \ + --enable-mad --with-mad-prefix=/opt/arm-caanoo/arm-none-linux-gnueabi/usr \ + --enable-png --with-png-prefix=/opt/arm-caanoo/arm-none-linux-gnueabi/usr \ + --enable-all-engines --enable-vkeybd --enable-plugins --default-dynamic + +echo Generating config for Caanoo complete. Check for errors. diff --git a/backends/platform/gph/build/caanoo-config.sh b/backends/platform/gph/build/caanoo-config.sh new file mode 100644 index 0000000000..11d597481a --- /dev/null +++ b/backends/platform/gph/build/caanoo-config.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +echo Quick script to make running configure all the time less painful +echo and let all the build work be done from the backend/build folder. + +# Assume Caanoo toolchain/build env. +. /opt/arm-caanoo/environment-setup + +# Edit the configure line to suit. +cd ../../../.. +./configure --backend=caanoo --disable-mt32emu --host=caanoo --disable-alsa --disable-flac \ + --disable-nasm --disable-vorbis --disable-hq-scalers \ + --with-sdl-prefix=/opt/arm-caanoo/arm-none-linux-gnueabi/usr/bin \ + --with-mpeg2-prefix=/opt/arm-caanoo/arm-none-linux-gnueabi/usr \ + --enable-tremor --with-tremor-prefix=/opt/arm-caanoo/arm-none-linux-gnueabi/usr \ + --enable-zlib --with-zlib-prefix=/opt/arm-caanoo/arm-none-linux-gnueabi/usr \ + --enable-mad --with-mad-prefix=/opt/arm-caanoo/arm-none-linux-gnueabi/usr \ + --enable-png --with-png-prefix=/opt/arm-caanoo/arm-none-linux-gnueabi/usr \ + --enable-vkeybd --enable-plugins --default-dynamic + +echo Generating config for GP2X Caanoo complete. Check for errors. |
