diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2011-08-02 02:50:36 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2011-08-09 23:28:06 +0200 |
commit | 8b0e9caca9d9274ff0087abfec62720953d0e746 (patch) | |
tree | 392ef65a23671f258d3a12ddf97a65bbecbbd486 /xmlsecurity/prj | |
parent | 10c0e027b8940e6cead7282fb69796cb28d2aeb9 (diff) |
convert xmlsecurity to gbuild
Diffstat (limited to 'xmlsecurity/prj')
-rw-r--r-- | xmlsecurity/prj/build.lst | 12 | ||||
-rw-r--r-- | xmlsecurity/prj/d.lst | 13 | ||||
-rw-r--r-- | xmlsecurity/prj/makefile.mk | 40 |
3 files changed, 41 insertions, 24 deletions
diff --git a/xmlsecurity/prj/build.lst b/xmlsecurity/prj/build.lst index 422f4a43b65d..e2776dfb4b59 100644 --- a/xmlsecurity/prj/build.lst +++ b/xmlsecurity/prj/build.lst @@ -1,12 +1,2 @@ xs xmlsecurity : TRANSLATIONS:translations xmloff unotools offapi unoil svx MOZ:moz LIBXMLSEC:libxmlsec NSS:nss LIBXSLT:libxslt NEON:neon NULL -xs xmlsecurity usr1 - all xs_mkout NULL -xs xmlsecurity\inc nmake - all xs_inc NULL -xs xmlsecurity\source\framework nmake - all xs_fw xs_inc NULL -xs xmlsecurity\source\xmlsec\nss nmake - all xs_nss xs_inc NULL -xs xmlsecurity\source\xmlsec\mscrypt nmake - all xs_mscrypt xs_inc NULL -xs xmlsecurity\source\xmlsec nmake - all xs_xmlsec xs_nss xs_mscrypt xs_inc NULL -xs xmlsecurity\source\helper nmake - all xs_helper xs_inc NULL -xs xmlsecurity\source\dialogs nmake - all xs_dialogs xs_inc NULL -xs xmlsecurity\source\component nmake - all xs_component xs_inc NULL -xs xmlsecurity\util nmake - all xs_util xs_fw xs_xmlsec xs_nss xs_mscrypt xs_helper xs_dialogs xs_component NULL -xs xmlsecurity\qa\certext nmake - all xs_certext xs_util NULL +xs xmlsecurity\prj nmake - all xs_prj NULL diff --git a/xmlsecurity/prj/d.lst b/xmlsecurity/prj/d.lst index 69da448e7281..e69de29bb2d1 100644 --- a/xmlsecurity/prj/d.lst +++ b/xmlsecurity/prj/d.lst @@ -1,13 +0,0 @@ -mkdir: %COMMON_DEST%\bin\hid -..\%COMMON_OUTDIR%\misc\*.hid %COMMON_DEST%\bin\hid\*.hid -..\%__SRC%\bin\xsec_fw.dll %_DEST%\bin\xsec_fw.dll -..\%__SRC%\bin\xsec_xmlsec.dll %_DEST%\bin\xsec_xmlsec.dll -..\%__SRC%\bin\xmlsecurity.dll %_DEST%\bin\xmlsecurity.dll -..\%__SRC%\lib\libxsec_fw.so %_DEST%\lib\libxsec_fw.so -..\%__SRC%\lib\libxsec_xmlsec.so %_DEST%\lib\libxsec_xmlsec.so -..\%__SRC%\lib\libxmlsecurity.so %_DEST%\lib\libxmlsecurity.so -..\%__SRC%\lib\*.dylib %_DEST%\lib\* -..\%__SRC%\bin\xmlsec*.res %_DEST%\bin\xmlsec*.res -..\%__SRC%\misc\xmlsecurity.component %_DEST%\xml\xmlsecurity.component -..\%__SRC%\misc\xsec_fw.component %_DEST%\xml\xsec_fw.component -..\%__SRC%\misc\xsec_xmlsec.component %_DEST%\xml\xsec_xmlsec.component diff --git a/xmlsecurity/prj/makefile.mk b/xmlsecurity/prj/makefile.mk new file mode 100644 index 000000000000..d30ff8a47e6b --- /dev/null +++ b/xmlsecurity/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 |