mirror of
https://github.com/libretro/pcsx2.git
synced 2025-01-09 03:02:59 +00:00
21 lines
214 B
Bash
21 lines
214 B
Bash
#!/bin/sh
|
|
|
|
curdir=`pwd`
|
|
|
|
echo ------------------
|
|
echo Building PeopsSPU2
|
|
echo ------------------
|
|
|
|
make $@
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|
|
|
|
if [ -s libspu2Peops*.so* ]
|
|
then
|
|
cp libspu2Peops*.so* ${PCSX2PLUGINS}
|
|
fi
|
|
|