1#!/bin/sh
2
3echo Quick script to make building all the time less painful.
4
5. /usr/local/angstrom/arm/environment-setup
6
7CROSS_COMPILE=arm-angstrom-linux-gnueabi-
8export CROSS_COMPILE
9
10# Export the tool names for cross-compiling
11export CXX=arm-angstrom-linux-gnueabi-g++
12export CC=arm-angstrom-linux-gnueabi-gcc
13export DEFINES=-DNDEBUG
14
15cd ../../../..
16
17echo Building ScummVM/OpenPandora.
18make
19
20echo Build for OpenPandora complete - Please check build logs.
21