From 0b351605620feea1397214b955a0929efe6664a1 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Sun, 26 Feb 2017 01:29:37 -0800 Subject: Add some parallelism to build_release make invocations --- build_release | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_release b/build_release index 185c102..be1815e 100755 --- a/build_release +++ b/build_release @@ -9,7 +9,7 @@ fi if [ $OS = "Linux" ]; then cd sdl ./configure - make clean all + make -j4 clean all cd .. rm -rf lib mkdir lib @@ -25,7 +25,7 @@ if [ $OS = "Linux" ]; then cd .. fi -make PORTABLE=1 clean all +make PORTABLE=1 -j4 clean all make menu.bin if [ $OS = "Windows" ]; then binaries="dis.exe zdis.exe stateview.exe vgmplay.exe blastem.exe SDL2.dll" -- cgit v1.2.3