pcsx2/plugins/zerospu2/build.sh

33 lines
408 B
Bash

#!/bin/sh
curdir=`pwd`
echo -----------------
echo Building ZeroSPU2
echo -----------------
if test "${ZEROSPU2OPTIONS+set}" != set ; then
export ZEROSPU2OPTIONS=""
fi
if [ $# -gt 0 ] && [ $1 = "all" ]
then
aclocal
automake -a
autoconf
./configure ${ZEROSPU2OPTIONS} --prefix=${PCSX2PLUGINS}
make clean
make install
else
make $@
fi
if [ $? -ne 0 ]
then
exit 1
fi
#cp libZeroSPU2*.so* ${PCSX2PLUGINS}