mirror of
https://github.com/libretro/pcsx2.git
synced 2025-01-16 22:48:36 +00:00
3a8bfabd2e
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@616 96395faa-99c1-11dd-bbfe-3dabce05a288
29 lines
289 B
Bash
29 lines
289 B
Bash
#!/bin/sh
|
|
|
|
curdir=`pwd`
|
|
|
|
echo -----------------
|
|
echo Building SoundTouch
|
|
echo -----------------
|
|
|
|
if [ $# -gt 0 ] && [ $1 = "all" ]
|
|
then
|
|
|
|
aclocal
|
|
automake -a
|
|
autoconf
|
|
./configure
|
|
make clean
|
|
make install
|
|
|
|
else
|
|
make $@
|
|
fi
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|
|
|
|
#cp libZeroSPU2*.so* ${PCSX2PLUGINS}
|