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