mirror of
https://github.com/PCSX2/pcsx2-sourceforge.git
synced 2026-02-05 11:51:18 +01:00
21 lines
249 B
Bash
21 lines
249 B
Bash
#!/bin/sh
|
|
|
|
echo ----------------
|
|
echo Building USBnull
|
|
echo ----------------
|
|
|
|
curdir=`pwd`
|
|
|
|
cd ${curdir}/Linux
|
|
make $@
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|
|
|
|
if [ -s cfgUSBnull ] && [ -s libUSBnull.so ]
|
|
then
|
|
cp cfgUSBnull libUSBnull.so ${PCSX2PLUGINS}
|
|
fi
|