diff options
author | David Tardon <dtardon@redhat.com> | 2011-04-20 14:48:59 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-04-21 20:51:13 +0200 |
commit | 1731fee4c4722d74bdb4ce0eb3b6b3a620e44e60 (patch) | |
tree | 2a3105df3a54e28ca54a18c3b36c812ad968c670 /reportdesign/prj | |
parent | 959067af84bf74d324f6751f766a96b6b46649d0 (diff) |
gbuildize reportdesign
Diffstat (limited to 'reportdesign/prj')
-rw-r--r-- | reportdesign/prj/build.lst | 17 | ||||
-rw-r--r-- | reportdesign/prj/d.lst | 24 | ||||
-rwxr-xr-x | reportdesign/prj/makefile.mk | 40 |
3 files changed, 41 insertions, 40 deletions
diff --git a/reportdesign/prj/build.lst b/reportdesign/prj/build.lst index cfa1e92f8a95..9ae4cc7d7455 100644 --- a/reportdesign/prj/build.lst +++ b/reportdesign/prj/build.lst @@ -1,18 +1,3 @@ rd reportdesign : TRANSLATIONS:translations BOOST:boost comphelper dbaccess formula LIBXSLT:libxslt NULL rd reportdesign usr1 - all rd_mkout NULL -rd reportdesign\inc nmake - all rd_inc NULL -rd reportdesign\source\core\api nmake - all rd_api rd_inc NULL -rd reportdesign\source\core\resource nmake - all rd_res rd_inc NULL -rd reportdesign\source\core\sdr nmake - all rd_sdr rd_inc NULL -rd reportdesign\source\core\misc nmake - all rd_misc rd_inc NULL -rd reportdesign\source\shared nmake - all rd_shared rd_inc NULL -rd reportdesign\source\ui\misc nmake - all rd_uimisc rd_inc NULL -rd reportdesign\source\ui\dlg nmake - all rd_uidlg rd_inc NULL -rd reportdesign\source\ui\report nmake - all rd_uireport rd_inc NULL -rd reportdesign\source\ui\inspection nmake - all rd_uiinspection rd_inc NULL -rd reportdesign\source\filter\xml nmake - all rd_filter_xml rd_inc NULL -rd reportdesign\util nmake - all rd_util rd_api rd_res rd_shared rd_uimisc rd_uidlg rd_uireport rd_uiinspection rd_sdr rd_misc rd_filter_xml NULL - -# has problems in m78, in m83 also -# rd reportdesign\qa\complex\reportdesign nmake - all rd_qa_complex NULL - +rd reportdesign\prj nmake - all rd_prj NULL diff --git a/reportdesign/prj/d.lst b/reportdesign/prj/d.lst index d7cc5fad6396..e69de29bb2d1 100644 --- a/reportdesign/prj/d.lst +++ b/reportdesign/prj/d.lst @@ -1,24 +0,0 @@ -mkdir: %_DEST%\xml%_EXT%\uiconfig\modules\dbreport\menubar -mkdir: %_DEST%\xml%_EXT%\uiconfig\modules\dbreport\statusbar -mkdir: %_DEST%\xml%_EXT%\uiconfig\modules\dbreport\toolbar - -..\%COMMON_OUTDIR%\misc\*.hid %COMMON_DEST%\bin%_EXT%\hid\*.hid - -dos: sh -c "if test %OS% = MACOSX; then create-bundle %_DEST%\lib%_EXT%\*.dylib; fi" - -# Libraries -..\%__SRC%\bin\rpt*.dll %_DEST%\bin%_EXT%\rpt*.dll -..\%__SRC%\lib\librpt*.so %_DEST%\lib%_EXT%\librpt*.so -# ..\%__SRC%\lib\irpt*.lib %_DEST%\lib%_EXT%\irpt*.lib -..\%__SRC%\lib\librpt*.dylib %_DEST%\lib%_EXT%\librpt*.dylib - -# Resources -..\%__SRC%\bin\*.res %_DEST%\bin%_EXT%\*.res - -..\uiconfig\dbreport\menubar\*.xml %_DEST%\xml%_EXT%\uiconfig\modules\dbreport\menubar\*.xml -..\uiconfig\dbreport\statusbar\*.xml %_DEST%\xml%_EXT%\uiconfig\modules\dbreport\statusbar\*.xml -..\uiconfig\dbreport\toolbar\*.xml %_DEST%\xml%_EXT%\uiconfig\modules\dbreport\toolbar\*.xml - -..\%__SRC%\misc\rpt.component %_DEST%\xml%_EXT%\rpt.component -..\%__SRC%\misc\rptui.component %_DEST%\xml%_EXT%\rptui.component -..\%__SRC%\misc\rptxml.component %_DEST%\xml%_EXT%\rptxml.component diff --git a/reportdesign/prj/makefile.mk b/reportdesign/prj/makefile.mk new file mode 100755 index 000000000000..e312a7ccab65 --- /dev/null +++ b/reportdesign/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 |