summaryrefslogtreecommitdiff
path: root/svtools/prj
diff options
context:
space:
mode:
authorBjoern Michaelsen <b_michaelsen@openoffice.org>2010-07-23 12:48:45 +0200
committerBjoern Michaelsen <b_michaelsen@openoffice.org>2010-07-23 12:48:45 +0200
commit93a3eed87acd6581f851ff92a3332de8e0ff8c29 (patch)
tree2b689e3c563fb786b38263a4c14eb3be9412c35d /svtools/prj
parent74284c8e763f19cd9f7891c5c836e0a53abf06b3 (diff)
gnumake2: some more checks for module makefiles
Diffstat (limited to 'svtools/prj')
-rw-r--r--svtools/prj/makefile.mk9
1 files changed, 7 insertions, 2 deletions
diff --git a/svtools/prj/makefile.mk b/svtools/prj/makefile.mk
index 8b00cb5a5818..3b1b54d4357f 100644
--- a/svtools/prj/makefile.mk
+++ b/svtools/prj/makefile.mk
@@ -25,11 +25,16 @@
#
#*************************************************************************
-.IF $(VERBOSE)
+PRJ=..
+TARGET=prj
+
+.INCLUDE : settings.mk
+
+.IF "$(VERBOSE)"!=""
VERBOSEFLAG :=
.ELSE
VERBOSEFLAG := -s
.ENDIF
all:
- @cd .. && $(GNUMAKE) $(VERBOSEFLAG) -r -j$(MAXPROCESS)
+ cd $(PRJ) && $(GNUMAKE) $(VERBOSEFLAG) -r -j$(MAXPROCESS)