mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@455 a6443dda-0b58-4228-96e9-037be469359c
21 lines
248 B
Bash
Executable file
21 lines
248 B
Bash
Executable file
#!/bin/sh
|
|
|
|
curdir=`pwd`
|
|
|
|
function buildplugin {
|
|
cd ${curdir}/$1
|
|
sh build.sh $2
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
buildplugin gs $@
|
|
buildplugin cdvd $@
|
|
buildplugin dev9 $@
|
|
buildplugin fw $@
|
|
buildplugin pad $@
|
|
buildplugin spu2 $@
|
|
buildplugin usb $@
|