mirror of https://github.com/PCSX2/pcsx2.git
31 lines
325 B
Bash
31 lines
325 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
curdir=`pwd`
|
||
|
|
||
|
echo ------------------------
|
||
|
echo Building SPU2 plugins...
|
||
|
echo ------------------------
|
||
|
|
||
|
cd ${curdir}/zerospu2
|
||
|
sh build.sh $@
|
||
|
|
||
|
if [ $? -ne 0 ]
|
||
|
then
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
cd ${curdir}/PeopsSPU2
|
||
|
sh build.sh $@
|
||
|
|
||
|
if [ $? -ne 0 ]
|
||
|
then
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
cd ${curdir}/SPU2null
|
||
|
sh build.sh $@
|
||
|
|
||
|
if [ $? -ne 0 ]
|
||
|
then
|
||
|
exit 1
|
||
|
fi
|