mirror of
https://github.com/libretro/pcsx2.git
synced 2024-12-23 10:19:10 +00:00
17 lines
259 B
Bash
17 lines
259 B
Bash
#!/bin/sh
|
|
|
|
curdir=`pwd`
|
|
|
|
echo -------------------
|
|
echo Building CDVDisoEFP
|
|
echo -------------------
|
|
|
|
cd ${curdir}/src/Linux
|
|
make $@
|
|
|
|
if [ -s cfgCDVDisoEFP ] && [ -s libCDVDisoEFP.so ]
|
|
then
|
|
# copy the files
|
|
cp cfgCDVDisoEFP libCDVDisoEFP.so ${PCSX2PLUGINS}
|
|
fi
|