mirror of
https://github.com/libretro/pcsx2.git
synced 2025-01-14 05:20:49 +00: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
|