mirror of
https://github.com/libretro/pcsx2.git
synced 2024-12-01 05:10:52 +00:00
17 lines
252 B
Bash
17 lines
252 B
Bash
#!/bin/sh
|
|
|
|
curdir=`pwd`
|
|
|
|
echo ------------------
|
|
echo Building CDVDlinuz
|
|
echo ------------------
|
|
|
|
cd ${curdir}/Src/Linux
|
|
make $@
|
|
|
|
if [ -s cfgCDVDlinuz ] && [ -s libCDVDlinuz.so ]
|
|
then
|
|
# copy the files
|
|
cp cfgCDVDlinuz libCDVDlinuz.so ${PCSX2PLUGINS}
|
|
fi
|