diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2011-08-02 22:45:48 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2011-08-02 23:18:54 +0200 |
commit | 5c715d3708b6324a1d1a7d8b6607f9c92984a40f (patch) | |
tree | a8ba4dd25053cae3d5f81c88c30732c187a503bc /i18nutil/prj | |
parent | 3f07bf808cf513f4d420470ea817d9c2785df5c1 (diff) |
convert i18nutil to gbuild
Diffstat (limited to 'i18nutil/prj')
-rw-r--r-- | i18nutil/prj/build.lst | 3 | ||||
-rw-r--r-- | i18nutil/prj/d.lst | 14 | ||||
-rw-r--r-- | i18nutil/prj/makefile.mk | 40 |
3 files changed, 41 insertions, 16 deletions
diff --git a/i18nutil/prj/build.lst b/i18nutil/prj/build.lst index 55c86ad3038f..67296ade20d6 100644 --- a/i18nutil/prj/build.lst +++ b/i18nutil/prj/build.lst @@ -1,3 +1,2 @@ inu i18nutil : sal cppu offapi NULL -inu i18nutil usr1 - all inu_mkout NULL -inu i18nutil\source\utility nmake - all inu_utility NULL +inu i18nutil\prj nmake - all inu_prj NULL diff --git a/i18nutil/prj/d.lst b/i18nutil/prj/d.lst index 72625de7e392..e69de29bb2d1 100644 --- a/i18nutil/prj/d.lst +++ b/i18nutil/prj/d.lst @@ -1,14 +0,0 @@ - -mkdir: %_DEST%\inc\i18nutil - -..\inc\i18nutil\casefolding.hxx %_DEST%\inc\i18nutil\casefolding.hxx -..\inc\i18nutil\oneToOneMapping.hxx %_DEST%\inc\i18nutil\oneToOneMapping.hxx -..\inc\i18nutil\unicode.hxx %_DEST%\inc\i18nutil\unicode.hxx -..\inc\i18nutil\widthfolding.hxx %_DEST%\inc\i18nutil\widthfolding.hxx -..\inc\i18nutil\x_rtl_ustring.h %_DEST%\inc\i18nutil\x_rtl_ustring.h - -..\%__SRC%\bin\i18nutil*.dll %_DEST%\bin\i18nutil*.dll -..\%__SRC%\lib\libi18nutil*.so %_DEST%\lib\libi18nutil*.so -..\%__SRC%\lib\libi18nutil*.dylib %_DEST%\lib\libi18nutil*.dylib -..\%__SRC%\lib\libi18nutil*.a %_DEST%\lib\libi18nutil*.a -..\%__SRC%\lib\ii18nutil.lib %_DEST%\lib\ii18nutil.lib diff --git a/i18nutil/prj/makefile.mk b/i18nutil/prj/makefile.mk new file mode 100644 index 000000000000..d30ff8a47e6b --- /dev/null +++ b/i18nutil/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 |