mirror of
https://github.com/libretro/pcsx2.git
synced 2024-11-28 20:00:44 +00:00
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
|