diff options
author | David Tardon <dtardon@redhat.com> | 2011-04-11 10:06:25 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-04-14 16:14:11 +0200 |
commit | b33312110dddaaeabf566f23861e94d9685935f9 (patch) | |
tree | 7203dac5f25e503eedeeb003e2ac1549c8d4a469 /lotuswordpro/prj | |
parent | 0b6042a8ec28610156f02375bc30cceebdac168f (diff) |
gbuildize lotuswordpro
Diffstat (limited to 'lotuswordpro/prj')
-rw-r--r-- | lotuswordpro/prj/build.lst | 5 | ||||
-rw-r--r-- | lotuswordpro/prj/d.lst | 4 | ||||
-rwxr-xr-x | lotuswordpro/prj/makefile.mk | 40 |
3 files changed, 41 insertions, 8 deletions
diff --git a/lotuswordpro/prj/build.lst b/lotuswordpro/prj/build.lst index 68b18e81df99..2c46966ab6c7 100644 --- a/lotuswordpro/prj/build.lst +++ b/lotuswordpro/prj/build.lst @@ -1,6 +1,3 @@ wp lotuswordpro : sfx2 sot svx comphelper BOOST:boost NULL wp lotuswordpro usr1 - all lwp_mkout NULL -wp lotuswordpro\source\filter nmake - all lwp_filter NULL -wp lotuswordpro\source\filter\xfilter nmake - all lwp_xfilter NULL -wp lotuswordpro\util nmake - all lwp_util lwp_filter lwp_xfilter NULL -wp lotuswordpro\qa\cppunit nmake - all lwp_qa_cppunit lwp_util NULL +wp lotuswordpro\prj nmake - all lwp_prj diff --git a/lotuswordpro/prj/d.lst b/lotuswordpro/prj/d.lst index 134657566260..e69de29bb2d1 100644 --- a/lotuswordpro/prj/d.lst +++ b/lotuswordpro/prj/d.lst @@ -1,4 +0,0 @@ -..\%__SRC%\lib\*.so %_DEST%\lib%_EXT%\*.so -..\%__SRC%\bin\*.dll %_DEST%\lib%_EXT%\*.dll -..\%__SRC%\lib\*.dylib %_DEST%\lib%_EXT%\*.dylib -..\%__SRC%\misc\*.component %_DEST%\xml%_EXT%\*.component diff --git a/lotuswordpro/prj/makefile.mk b/lotuswordpro/prj/makefile.mk new file mode 100755 index 000000000000..e312a7ccab65 --- /dev/null +++ b/lotuswordpro/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 |