diff options
author | Mathias Bauer <mba@openoffice.org> | 2011-02-24 17:08:10 +0100 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2011-06-16 12:14:15 +0200 |
commit | c683c55b54d3708ebe458146253d147186590c79 (patch) | |
tree | 49dcee4fe25e057791d837837c83a8c90eafa3ff /linguistic/prj | |
parent | 2151303db47b9dc6a262df884939db4240d291a5 (diff) |
CWS gnumake4: convert linguistic to new build system
Diffstat (limited to 'linguistic/prj')
-rw-r--r-- | linguistic/prj/build.lst | 10 | ||||
-rw-r--r-- | linguistic/prj/d.lst | 13 | ||||
-rw-r--r-- | linguistic/prj/makefile.mk | 40 |
3 files changed, 41 insertions, 22 deletions
diff --git a/linguistic/prj/build.lst b/linguistic/prj/build.lst index 0043eaffc6ed..cae9ac8692a6 100644 --- a/linguistic/prj/build.lst +++ b/linguistic/prj/build.lst @@ -1,10 +1,2 @@ lg linguistic : svl xmloff ucbhelper vos comphelper ICU:icu LIBXSLT:libxslt NULL -lg linguistic usr1 - all lg_mkout NULL -lg linguistic\prj get - all lg_prj NULL -lg linguistic\inc nmake - all lg_inc NULL -lg linguistic\source nmake - all lg_src lg_inc NULL - -lg linguistic\qa\unoapi nmake - all lg_qa_unoapi NULL - -# could be we need a Japanese office version -# lg linguistic\qa\complex\linguistic nmake - all lg_qa_complex NULL +lg linguistic\prj nmake - all lg_prj NULL diff --git a/linguistic/prj/d.lst b/linguistic/prj/d.lst index 03237f925764..e69de29bb2d1 100644 --- a/linguistic/prj/d.lst +++ b/linguistic/prj/d.lst @@ -1,13 +0,0 @@ -..\%__SRC%\bin\lng* %_DEST%\bin%_EXT%\lng* -..\%__SRC%\lib\ilng* %_DEST%\lib%_EXT%\ilng* -..\%__SRC%\lib\liblng.a %_DEST%\lib%_EXT%\liblng.a -..\%__SRC%\lib\*.dylib %_DEST%\lib%_EXT%\*.dylib -..\%__SRC%\lib\liblng*.so %_DEST%\lib%_EXT%\liblng*.so - -..\xml\*.xml %_DEST%\xml%_EXT%\*.xml - -mkdir: %_DEST%\inc%_EXT%\linguistic -..\inc\linguistic\*.hxx %_DEST%\inc%_EXT%\linguistic\*.hxx - -..\%__SRC%\misc\lng.component %_DEST%\xml%_EXT%\lng.component - diff --git a/linguistic/prj/makefile.mk b/linguistic/prj/makefile.mk new file mode 100644 index 000000000000..88cd9dfe08b8 --- /dev/null +++ b/linguistic/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 |