Parallelize synthesis

git-svn-id: https://svn.eduke32.com/eduke32@6388 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2017-07-27 10:17:58 +00:00
parent eeaf1f1d54
commit c5ddc0d919

View file

@ -8,9 +8,9 @@ top=/var/www/synthesis
lockfile=$top/synthesis_building lockfile=$top/synthesis_building
source=$top/eduke32 source=$top/eduke32
output=/var/www/dukeworld.duke4.net/eduke32/synthesis output=/var/www/dukeworld.duke4.net/eduke32/synthesis
make=( make SYNTHESIS=1 PLATFORM=WINDOWS CROSS='i686-w64-mingw32-' CC='i686-w64-mingw32-gcc' CXX='i686-w64-mingw32-g++' AS='nasm' PRETTY_OUTPUT=0 SDLCONFIG='' ) make=( make -Bj4 SYNTHESIS=1 PLATFORM=WINDOWS CROSS='i686-w64-mingw32-' CC='i686-w64-mingw32-gcc' CXX='i686-w64-mingw32-g++' AS='nasm' PRETTY_OUTPUT=0 SDLCONFIG='' )
make64=( make SYNTHESIS=1 PLATFORM=WINDOWS CROSS='x86_64-w64-mingw32-' CC='x86_64-w64-mingw32-gcc' CXX='x86_64-w64-mingw32-g++' AS='nasm' PRETTY_OUTPUT=0 SDLCONFIG='' ) make64=( make -Bj4 SYNTHESIS=1 PLATFORM=WINDOWS CROSS='x86_64-w64-mingw32-' CC='x86_64-w64-mingw32-gcc' CXX='x86_64-w64-mingw32-g++' AS='nasm' PRETTY_OUTPUT=0 SDLCONFIG='' )
clean=veryclean clean=
# the following file paths are relative to $source # the following file paths are relative to $source
targets=( eduke32$exe mapster32$exe ) targets=( eduke32$exe mapster32$exe )