diff options
author | Bjoern Michaelsen <b_michaelsen@openoffice.org> | 2010-07-23 12:48:45 +0200 |
---|---|---|
committer | Bjoern Michaelsen <b_michaelsen@openoffice.org> | 2010-07-23 12:48:45 +0200 |
commit | e401e6846b174c3f5deda3b3e19d89de2e4ac78a (patch) | |
tree | eb2a9a02a8a464c59302b6da0fadca5e5f449e3e /sfx2/prj | |
parent | 17381ec4f0f9aa1b0283ff3096e15bac86413c4d (diff) |
gnumake2: some more checks for module makefiles
Diffstat (limited to 'sfx2/prj')
-rw-r--r-- | sfx2/prj/makefile.mk | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sfx2/prj/makefile.mk b/sfx2/prj/makefile.mk index 8b00cb5a5818..3b1b54d4357f 100644 --- a/sfx2/prj/makefile.mk +++ b/sfx2/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) |