mirror of https://github.com/PCSX2/pcsx2.git
16 lines
178 B
Bash
16 lines
178 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo ---------------
|
||
|
echo Building PADwin
|
||
|
echo ---------------
|
||
|
|
||
|
curdir=`pwd`
|
||
|
|
||
|
cd ${curdir}/Src
|
||
|
make $@
|
||
|
|
||
|
if [ -s libPADwin.so ]
|
||
|
then
|
||
|
cp libPADwin.so ${PCSX2PLUGINS}
|
||
|
fi
|