diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2011-08-10 01:49:06 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2011-08-10 01:51:05 +0200 |
commit | 38dcd6a3b3fdaf3efcdf33f464f282e1f0673ffd (patch) | |
tree | 81fdf8e32abc893fa9069052bc85471ab12f7b6c /uui/prj | |
parent | ea4470cbaca80a3d3f5816434918dc99cd989d8d (diff) |
convert uui to gbuild
Diffstat (limited to 'uui/prj')
-rw-r--r-- | uui/prj/build.lst | 4 | ||||
-rw-r--r-- | uui/prj/d.lst | 10 | ||||
-rw-r--r-- | uui/prj/makefile.mk | 40 |
3 files changed, 41 insertions, 13 deletions
diff --git a/uui/prj/build.lst b/uui/prj/build.lst index b27bd3ee9e2c..b2c6640b2c47 100644 --- a/uui/prj/build.lst +++ b/uui/prj/build.lst @@ -1,4 +1,2 @@ uu uui : TRANSLATIONS:translations vcl svtools LIBXSLT:libxslt NULL -uu uui usr1 - all uu_mkout NULL -uu uui\source nmake - all uu_source NULL -uu uui\util nmake - all uu_util uu_source NULL +uu uui\prj nmake - all uu_prj NULL diff --git a/uui/prj/d.lst b/uui/prj/d.lst index 4e01426a3f52..e69de29bb2d1 100644 --- a/uui/prj/d.lst +++ b/uui/prj/d.lst @@ -1,10 +0,0 @@ -mkdir: %COMMON_DEST%\bin\hid - -..\%COMMON_OUTDIR%\misc\*.hid %COMMON_DEST%\bin\hid\*.hid -..\%__SRC%\bin\uui*.dll %_DEST%\bin\uui*.dll -..\%__SRC%\bin\uui*.res %_DEST%\bin\uui*.res -..\%__SRC%\lib\libuui*.* %_DEST%\lib\libuui*.* -..\%__SRC%\lib\iuui.lib %_DEST%\lib\iuui.lib - -..\util\uui.xml %_DEST%\xml\uui.xml -..\%__SRC%\misc\uui.component %_DEST%\xml\uui.component diff --git a/uui/prj/makefile.mk b/uui/prj/makefile.mk new file mode 100644 index 000000000000..bcb4970389b5 --- /dev/null +++ b/uui/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 |