mirror of https://github.com/PCSX2/pcsx2.git
17 lines
252 B
Bash
17 lines
252 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
curdir=`pwd`
|
||
|
|
||
|
echo ------------------
|
||
|
echo Building CDVDpeops
|
||
|
echo ------------------
|
||
|
|
||
|
cd ${curdir}/src/Linux
|
||
|
make $@
|
||
|
|
||
|
# copy the files
|
||
|
if [ -s cfgCDVDpeops ] && [ -s libCDVDpeops.so ]
|
||
|
then
|
||
|
cp cfgCDVDpeops libCDVDpeops.so ${PCSX2PLUGINS}
|
||
|
fi
|