mirror of
https://github.com/libretro/pcsx2.git
synced 2024-12-11 11:45:33 +00:00
456672168e
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1109 96395faa-99c1-11dd-bbfe-3dabce05a288
33 lines
368 B
Bash
33 lines
368 B
Bash
#!/bin/sh
|
|
|
|
echo ---------------
|
|
echo Building SPU2null
|
|
echo ---------------
|
|
|
|
curdir=`pwd`
|
|
|
|
|
|
if test "${SPU2nullOPTIONS+set}" != set ; then
|
|
export SPU2nullOPTIONS=""
|
|
fi
|
|
|
|
if [ $# -gt 0 ] && [ $1 = "all" ]
|
|
then
|
|
|
|
aclocal
|
|
automake -a
|
|
autoconf
|
|
|
|
./configure ${SPU2nullOPTIONS} --prefix=${PCSX2PLUGINS}
|
|
make clean
|
|
make install
|
|
|
|
else
|
|
make $@
|
|
fi
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|