mirror of https://github.com/PCSX2/pcsx2.git
25 lines
289 B
Bash
25 lines
289 B
Bash
#!/bin/sh
|
|
|
|
echo -----------------------
|
|
echo Building PAD plugins...
|
|
echo -----------------------
|
|
|
|
curdir=`pwd`
|
|
|
|
# disable PADwin for linux builds
|
|
#cd ${curdir}/PADwin
|
|
#sh build.sh $@
|
|
|
|
#if [ $? -ne 0 ]
|
|
#then
|
|
#exit 1
|
|
#fi
|
|
|
|
cd ${curdir}/zeropad
|
|
sh build.sh $@
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|