comparison build_release @ 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 4cbc349a82a9
children d93008d96247
comparison
equal deleted inserted replaced
1235:1fee3c14e607 1236:22b4297a5913
7 fi 7 fi
8 8
9 if [ $OS = "Linux" ]; then 9 if [ $OS = "Linux" ]; then
10 cd sdl 10 cd sdl
11 ./configure 11 ./configure
12 make clean all 12 make -j4 clean all
13 cd .. 13 cd ..
14 rm -rf lib 14 rm -rf lib
15 mkdir lib 15 mkdir lib
16 cp sdl/build/.libs/libSDL2-*.so.*.*.* lib 16 cp sdl/build/.libs/libSDL2-*.so.*.*.* lib
17 sdl=`ls lib` 17 sdl=`ls lib`
23 cd glew 23 cd glew
24 make clean all 24 make clean all
25 cd .. 25 cd ..
26 fi 26 fi
27 27
28 make PORTABLE=1 clean all 28 make PORTABLE=1 -j4 clean all
29 make menu.bin 29 make menu.bin
30 if [ $OS = "Windows" ]; then 30 if [ $OS = "Windows" ]; then
31 binaries="dis.exe zdis.exe stateview.exe vgmplay.exe blastem.exe SDL2.dll" 31 binaries="dis.exe zdis.exe stateview.exe vgmplay.exe blastem.exe SDL2.dll"
32 cmd="wine blastem.exe" 32 cmd="wine blastem.exe"
33 txt=".txt" 33 txt=".txt"