From c5ddc0d919831074c4e4f1886d3be9f2674c37d1 Mon Sep 17 00:00:00 2001 From: terminx Date: Thu, 27 Jul 2017 10:17:58 +0000 Subject: [PATCH] Parallelize synthesis git-svn-id: https://svn.eduke32.com/eduke32@6388 1a8010ca-5511-0410-912e-c29ae57300e0 --- platform/synthesis.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platform/synthesis.sh b/platform/synthesis.sh index 227e369fc..b93968437 100755 --- a/platform/synthesis.sh +++ b/platform/synthesis.sh @@ -8,9 +8,9 @@ top=/var/www/synthesis lockfile=$top/synthesis_building source=$top/eduke32 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='' ) -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='' ) -clean=veryclean +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 -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= # the following file paths are relative to $source targets=( eduke32$exe mapster32$exe )