diff options
author | David Tardon <dtardon@redhat.com> | 2011-04-16 14:28:27 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-04-16 14:31:36 +0200 |
commit | e56b27252d36e5f09dbb41dcf1752cd72a3617ab (patch) | |
tree | 886603be47f4ade417b53a5ddcf24cbb21d2a3cd /cui/prj | |
parent | c1b2e0e80cdeaddc4ab7cf27bcb0d19608641f7a (diff) |
gbuildize cui
Diffstat (limited to 'cui/prj')
-rw-r--r-- | cui/prj/build.lst | 8 | ||||
-rw-r--r-- | cui/prj/d.lst | 8 | ||||
-rwxr-xr-x | cui/prj/makefile.mk | 40 |
3 files changed, 41 insertions, 15 deletions
diff --git a/cui/prj/build.lst b/cui/prj/build.lst index 776d6a6af82e..47ded1f6fa22 100644 --- a/cui/prj/build.lst +++ b/cui/prj/build.lst @@ -1,9 +1,3 @@ cu cui : svx NULL cu cui usr1 - all cui_mkout NULL -cu cui\inc nmake - all cui_inc NULL -cu cui\source\options nmake - all cui_options cui_inc NULL -cu cui\source\customize nmake - all cui_customize cui_inc NULL -cu cui\source\dialogs nmake - all cui_dialogs cui_inc NULL -cu cui\source\tabpages nmake - all cui_tabpages cui_inc NULL -cu cui\source\factory nmake - all cui_factory cui_inc NULL -cu cui\util nmake - all cui_util cui_factory cui_tabpages cui_dialogs cui_customize cui_options NULL +cu cui\prj nmake - all cui_prj NULL diff --git a/cui/prj/d.lst b/cui/prj/d.lst index ce672717bfff..e69de29bb2d1 100644 --- a/cui/prj/d.lst +++ b/cui/prj/d.lst @@ -1,8 +0,0 @@ -mkdir: %COMMON_DEST%\bin%_EXT%\hid -mkdir: %COMMON_DEST%\res%_EXT% - -..\%__SRC%\bin\*.dll %_DEST%\bin%_EXT%\*.dll -..\%__SRC%\bin\*.res %_DEST%\bin%_EXT%\*.res -..\%COMMON_OUTDIR%\misc\*.hid %COMMON_DEST%\bin%_EXT%\hid\*.hid -..\%__SRC%\lib\lib*.* %_DEST%\lib%_EXT%\lib*.* - diff --git a/cui/prj/makefile.mk b/cui/prj/makefile.mk new file mode 100755 index 000000000000..e312a7ccab65 --- /dev/null +++ b/cui/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 |