summaryrefslogtreecommitdiff
path: root/xmloff/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
commite401e6846b174c3f5deda3b3e19d89de2e4ac78a (patch)
treeeb2a9a02a8a464c59302b6da0fadca5e5f449e3e /xmloff/prj
parent17381ec4f0f9aa1b0283ff3096e15bac86413c4d (diff)
gnumake2: some more checks for module makefiles
Diffstat (limited to 'xmloff/prj')
-rw-r--r--xmloff/prj/makefile.mk9
1 files changed, 7 insertions, 2 deletions
diff --git a/xmloff/prj/makefile.mk b/xmloff/prj/makefile.mk
index 8b00cb5a5818..3b1b54d4357f 100644
--- a/xmloff/prj/makefile.mk
+++ b/xmloff/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)