From 58d4913ac12cee7e8505165585bf661d100fe2ba Mon Sep 17 00:00:00 2001 From: Volker Grabsch Date: Sat, 31 Jan 2009 07:38:19 +0100 Subject: [PATCH] disable parallel builds by default and document in the README how to enable parallelization --- Makefile | 2 +- doc/README | 14 +++++++++++--- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 90a6ed66..56e60489 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # MinGW cross compiling environment # see doc/README for further information -JOBS := 4 +JOBS := 1 TARGET := i386-mingw32msvc SOURCEFORGE_MIRROR := kent.dl.sourceforge.net diff --git a/doc/README b/doc/README index b84beb77..d756ba61 100644 --- a/doc/README +++ b/doc/README @@ -21,11 +21,19 @@ Usage make - build all packages + build all packages, + non-parallel - make foo + make foo bar - build package 'foo' and all dependencies + build packages 'foo', 'bar' and their dependencies, + non-parallel + + make foo bar -j 4 JOBS=2 + + build packages 'foo', 'bar' and their dependencies, + where up to 4 packages are build in parallel, + each with up to 2 compiler processes running in parallel make strip