disable parallel builds by default and document in the README how to enable parallelization

This commit is contained in:
Volker Grabsch 2009-01-31 07:38:19 +01:00
parent bf9818cff2
commit 58d4913ac1
2 changed files with 12 additions and 4 deletions

View File

@ -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

View File

@ -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