pcsx2/build.sh
laurence.muller a2791d843e Using standard SVN folder structure
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@398 96395faa-99c1-11dd-bbfe-3dabce05a288
2008-11-06 23:27:06 +00:00

30 lines
573 B
Bash

#!/bin/sh
# Usage: sh build.sh [option]
# option can be all (rebuilds everything), clean, or nothing (incremental build)
# Modify the individual build.sh for specific program options like debug symbols
export PCSX2OPTIONS="--enable-devbuild --enable-sse2 --prefix `pwd`"
export PCSX2PLUGINS="`pwd`/bin/plugins"
curdir=`pwd`
cd ${curdir}/plugins
sh build.sh $@
if [ $? -ne 0 ]
then
echo Error with building plugins
exit 1
fi
cd ${curdir}/pcsx2
#mkdir debugdev
#cd debugdev
#sh ../build.sh $@
sh build.sh $@
if [ $? -ne 0 ]
then
echo Error with building pcsx2
exit 1
fi