summaryrefslogtreecommitdiff
path: root/sw/prj
diff options
context:
space:
mode:
authorBjoern Michaelsen <b_michaelsen@openoffice.org>2010-06-26 02:05:52 +0200
committerBjoern Michaelsen <b_michaelsen@openoffice.org>2010-06-26 02:05:52 +0200
commitad8fe1ccb3d5ca8613c63a2d9c3ba9adf7304eb1 (patch)
tree93d0e78ad7800469bc9dcb2355c9b6f93148c1dd /sw/prj
parent000dccdad6de998162fcdf942f0e14c729befd44 (diff)
CWS gnumake2: reaching through verbosity and max processes
Diffstat (limited to 'sw/prj')
-rw-r--r--sw/prj/makefile.mk35
1 files changed, 34 insertions, 1 deletions
diff --git a/sw/prj/makefile.mk b/sw/prj/makefile.mk
index 2a0b99e72fd5..967bfea90d3c 100644
--- a/sw/prj/makefile.mk
+++ b/sw/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)