diff --git a/compile.sh b/compile.sh index 54b8f22..86a42cc 100755 --- a/compile.sh +++ b/compile.sh @@ -28,6 +28,14 @@ pushd dependencies/openvcl sudo -E make install -j$(nproc) popd +# PS2Stuff +if [ ! -d "dependencies/ps2stuff" ]; then + echo "------Cloning ps2stuff------" + git clone https://github.com/ps2dev/ps2stuff.git dependencies/ps2stuff +fi +echo "------Compiling ps2gl------" +pushd dependencies/ps2stuff && make install -j$(nproc); popd + # PS2GL if [ ! -d "dependencies/ps2gl" ]; then echo "------Cloning ps2gl------"