2006-10-06 19:01:39 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
echo Quick script to make building all the time less painful.
|
|
|
|
|
|
|
|
# Set the paths up here to support the build.
|
|
|
|
|
2007-02-07 15:57:55 +00:00
|
|
|
export PATH=/opt/open2x/gcc-4.1.1-glibc-2.3.6/arm-open2x-linux/bin:$PATH
|
|
|
|
export PATH=/opt/open2x/gcc-4.1.1-glibc-2.3.6/bin:$PATH
|
2006-10-06 19:01:39 +00:00
|
|
|
export CXX=arm-open2x-linux-g++
|
|
|
|
export CC=arm-open2x-linux-gcc
|
|
|
|
export CXXFLAGS=-march=armv4t
|
|
|
|
export LDFLAGS=-static
|
|
|
|
|
|
|
|
cd ../../../..
|
|
|
|
|
|
|
|
echo Cleaning ScummVM for GP2X.
|
|
|
|
make clean
|