changeset 1236:22b4297a5913

Add some parallelism to build_release make invocations
author Michael Pavone <pavone@retrodev.com>
date Sun, 26 Feb 2017 01:29:37 -0800
parents 1fee3c14e607
children d93008d96247
files build_release
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/build_release	Sun Feb 26 01:10:09 2017 -0800
+++ b/build_release	Sun Feb 26 01:29:37 2017 -0800
@@ -9,7 +9,7 @@
 if [ $OS = "Linux" ]; then
 	cd sdl
 	./configure
-	make clean all
+	make -j4 clean all
 	cd ..
 	rm -rf lib
 	mkdir lib
@@ -25,7 +25,7 @@
 	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"