mirror of
https://github.com/libretro/pcsx2.git
synced 2025-01-07 10:10:41 +00:00
74ebe985f6
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1121 96395faa-99c1-11dd-bbfe-3dabce05a288
33 lines
364 B
Bash
33 lines
364 B
Bash
#!/bin/sh
|
|
|
|
echo ---------------
|
|
echo Building USBnull
|
|
echo ---------------
|
|
|
|
curdir=`pwd`
|
|
|
|
|
|
if test "${USBnullOPTIONS+set}" != set ; then
|
|
export USBnullOPTIONS=""
|
|
fi
|
|
|
|
if [ $# -gt 0 ] && [ $1 = "all" ]
|
|
then
|
|
|
|
aclocal
|
|
automake -a
|
|
autoconf
|
|
|
|
./configure ${USBnullOPTIONS} --prefix=${PCSX2PLUGINS}
|
|
make clean
|
|
make install
|
|
|
|
else
|
|
make $@
|
|
fi
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|