mirror of https://github.com/PCSX2/pcsx2.git
13 lines
171 B
Bash
13 lines
171 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
curdir=`pwd`
|
||
|
|
||
|
echo -----------------
|
||
|
echo Building CDVDnull
|
||
|
echo -----------------
|
||
|
cd ${curdir}/Src
|
||
|
make $@
|
||
|
|
||
|
# copy the files
|
||
|
cp libCDVDnull.so ${PCSX2PLUGINS}
|