mirror of
https://github.com/PCSX2/pcsx2.git
synced 2026-09-21 12:05:47 +02: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
|