diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-03-26 15:19:00 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-03-26 15:26:47 -0500 |
commit | da5f126844fab3c647c3d95cdf613aaf2e22ceed (patch) | |
tree | 3debf999946c8641e0dab58131d49eb135e68ab8 /starmath/prj | |
parent | e4cfff7d71b53cf24fb527f2c3b5ff95406e8901 (diff) |
convert starmath to gnumake
Diffstat (limited to 'starmath/prj')
-rw-r--r-- | starmath/prj/gbuild.lst | 2 | ||||
-rw-r--r-- | starmath/prj/makefile.mk | 40 |
2 files changed, 42 insertions, 0 deletions
diff --git a/starmath/prj/gbuild.lst b/starmath/prj/gbuild.lst new file mode 100644 index 000000000000..da2383eb27e8 --- /dev/null +++ b/starmath/prj/gbuild.lst @@ -0,0 +1,2 @@ +sm starmath : LIBXSLT:libxslt TRANSLATIONS:translations svx ure NULL +sm starmath\prj nmake - all sm_prj NULL diff --git a/starmath/prj/makefile.mk b/starmath/prj/makefile.mk new file mode 100644 index 000000000000..e312a7ccab65 --- /dev/null +++ b/starmath/prj/makefile.mk @@ -0,0 +1,40 @@ +#************************************************************************* +# +# 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. +# +#************************************************************************* + +PRJ=.. +TARGET=prj + +.INCLUDE : settings.mk + +.IF "$(VERBOSE)"!="" +VERBOSEFLAG := +.ELSE +VERBOSEFLAG := -s +.ENDIF + +all: + cd $(PRJ) && $(GNUMAKE) $(VERBOSEFLAG) -r -j$(MAXPROCESS) $(gb_MAKETARGET) && $(GNUMAKE) $(VERBOSEFLAG) -r deliverlog |