mirror of https://github.com/PCSX2/pcsx2.git
10 lines
111 B
Bash
10 lines
111 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo Building dev9null...
|
||
|
curdir=`pwd`
|
||
|
|
||
|
cd ${curdir}/src
|
||
|
make $@
|
||
|
|
||
|
cp libDEV9null.so ${PCSX2PLUGINS}
|