diff options
author | Bjoern Michaelsen <b_michaelsen@openoffice.org> | 2010-06-26 02:05:52 +0200 |
---|---|---|
committer | Bjoern Michaelsen <b_michaelsen@openoffice.org> | 2010-06-26 02:05:52 +0200 |
commit | 5fc7423878d02fac53b3140aff0d6d89fd74232d (patch) | |
tree | 780f240d8059ab690e81f6883f9e6fe5bdc5df78 /svtools/prj | |
parent | f51c9e5db1b84ce92bb75d3a5faf6ebe9ef5dcc9 (diff) |
CWS gnumake2: reaching through verbosity and max processes
Diffstat (limited to 'svtools/prj')
-rw-r--r-- | svtools/prj/makefile.mk | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/svtools/prj/makefile.mk b/svtools/prj/makefile.mk index 2a0b99e72fd5..967bfea90d3c 100644 --- a/svtools/prj/makefile.mk +++ b/svtools/prj/makefile.mk @@ -1,2 +1,35 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# This file is part of OpenOffice.org. +# +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. +# +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# <http://www.openoffice.org/license.html> +# for a copy of the LGPLv3 License. +# +#************************************************************************* + +.IF $(VERBOSE) +VERBOSEFLAG := +.ELSE +VERBOSEFLAG := -s +.ENDIF + all: - cd .. && make -srj9 + @cd .. && make $(VERBOSEFLAG) -r -j$(MAXPROCESS) |