mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@484 a6443dda-0b58-4228-96e9-037be469359c
16 lines
238 B
Bash
16 lines
238 B
Bash
#!/bin/sh
|
|
|
|
curdir=`pwd`
|
|
|
|
echo ----------------
|
|
echo Building CDVDiso
|
|
echo ----------------
|
|
|
|
cd ${curdir}/src/Linux
|
|
make $@
|
|
|
|
# copy the files
|
|
if [ -s cfgCDVDiso ] && [ -s libCDVDiso.so ]
|
|
then
|
|
cp cfgCDVDiso libCDVDiso.so ${PCSX2PLUGINS}
|
|
fi
|