changeset 206:c82301af7b7f

disable parallel builds by default and document in the README how to enable parallelization
author Volker Grabsch <vog@notjusthosting.com>
date Sat, 31 Jan 2009 07:38:19 +0100
parents 74275a3f9e54
children aae7a7f20d54
files Makefile doc/README
diffstat 2 files changed, 12 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Sat Jan 31 06:52:28 2009 +0100
+++ b/Makefile	Sat Jan 31 07:38:19 2009 +0100
@@ -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
 
--- a/doc/README	Sat Jan 31 06:52:28 2009 +0100
+++ b/doc/README	Sat Jan 31 07:38:19 2009 +0100
@@ -21,11 +21,19 @@
 
     make
 
-        build all packages
+        build all packages,
+        non-parallel
+
+    make foo bar
 
-    make foo
+        build packages 'foo', 'bar' and their dependencies,
+        non-parallel
 
-        build package 'foo' and all dependencies
+    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