mirror of
https://github.com/libretro/pcsx2.git
synced 2025-01-10 19:50:14 +00:00
595c08df88
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@432 96395faa-99c1-11dd-bbfe-3dabce05a288
17 lines
238 B
Bash
17 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
|