mirror of https://github.com/PCSX2/pcsx2.git
16 lines
210 B
Bash
16 lines
210 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo ---------------
|
||
|
echo Building FWnull
|
||
|
echo ---------------
|
||
|
|
||
|
curdir=`pwd`
|
||
|
|
||
|
cd ${curdir}/Linux
|
||
|
make $@
|
||
|
|
||
|
if [ -s cfgFWnull ] && [ -s libFWnull.so ]
|
||
|
then
|
||
|
cp cfgFWnull libFWnull.so ${PCSX2PLUGINS}
|
||
|
fi
|