mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@485 96395faa-99c1-11dd-bbfe-3dabce05a288
13 lines
166 B
Bash
13 lines
166 B
Bash
#!/bin/sh
|
|
|
|
curdir=`pwd`
|
|
|
|
echo -----------------
|
|
echo Building SPU2null
|
|
echo -----------------
|
|
|
|
cd ${curdir}/Src
|
|
make clean
|
|
make $@
|
|
|
|
cp libSPU2null.so ${PCSX2PLUGINS}
|