diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2011-08-26 14:04:17 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2011-08-26 14:33:51 +0200 |
commit | d0c301bba0b483c7ffef83fe93fa9658aa10bd44 (patch) | |
tree | 55e102a60c0c724e73e670571c2c98df3ac3c54d /package/prj | |
parent | 5e4c9fb9bbf12b40afbefb30e8d71d6e046b5bd0 (diff) |
convert package to gbuild
Diffstat (limited to 'package/prj')
-rw-r--r-- | package/prj/build.lst | 9 | ||||
-rw-r--r-- | package/prj/d.lst | 12 | ||||
-rw-r--r-- | package/prj/makefile.mk | 40 |
3 files changed, 41 insertions, 20 deletions
diff --git a/package/prj/build.lst b/package/prj/build.lst index 6afa434558a4..e1a2c11e6e06 100644 --- a/package/prj/build.lst +++ b/package/prj/build.lst @@ -1,9 +1,2 @@ pk package : cppu cppuhelper comphelper ucbhelper sal ZLIB:zlib LIBXSLT:libxslt NULL -pk package usr1 - all pk_mkout NULL -pk package\inc nmake - all pk_inc NULL -pk package\source\zipapi nmake - all pk_zipapi pk_inc NULL -pk package\source\zippackage nmake - all pk_zippackage pk_inc NULL -pk package\source\manifest nmake - all pk_manifest pk_inc NULL -pk package\source\xstor nmake - all pk_xstor pk_manifest pk_inc NULL -pk package\util nmake - all pk_util pk_zipapi pk_zippackage pk_manifest pk_xstor NULL - +pk package\prj nmake - all pk_prj NULL diff --git a/package/prj/d.lst b/package/prj/d.lst index 7b3aff2482d8..e69de29bb2d1 100644 --- a/package/prj/d.lst +++ b/package/prj/d.lst @@ -1,12 +0,0 @@ -..\%__SRC%\misc\*.map %_DEST%\bin\*.map -..\%__SRC%\bin\*.dll %_DEST%\bin\*.dll -..\%__SRC%\lib\*.lib %_DEST%\lib\*.lib -..\%__SRC%\lib\*.a %_DEST%\lib\*.a -..\%__SRC%\lib\lib*.so %_DEST%\lib\lib*.so -..\%__SRC%\lib\*.dylib %_DEST%\lib\*.dylib -..\dtd\*.dtd %_DEST%\bin\*.* -..\%__SRC%\misc\package2.component %_DEST%\xml\package2.component -..\%__SRC%\misc\xstor.component %_DEST%\xml\xstor.component -..\inc\Inflater.hxx %_DEST%\inc\package\Inflater.hxx -..\inc\Deflater.hxx %_DEST%\inc\package\Deflater.hxx -..\inc\packagedllapi.hxx %_DEST%\inc\package\packagedllapi.hxx diff --git a/package/prj/makefile.mk b/package/prj/makefile.mk new file mode 100644 index 000000000000..85b25665cc83 --- /dev/null +++ b/package/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$(GMAKE_MODULE_PARALLELISM) $(gb_MAKETARGET) && $(GNUMAKE) $(VERBOSEFLAG) -r deliverlog |