diff options
Diffstat (limited to 'dtrans/prj')
-rw-r--r-- | dtrans/prj/build.lst | 15 | ||||
-rw-r--r-- | dtrans/prj/d.lst | 14 | ||||
-rw-r--r-- | dtrans/prj/makefile.mk | 40 |
3 files changed, 41 insertions, 28 deletions
diff --git a/dtrans/prj/build.lst b/dtrans/prj/build.lst index 519e1fda37c8..61443afa2a19 100644 --- a/dtrans/prj/build.lst +++ b/dtrans/prj/build.lst @@ -1,15 +1,2 @@ dr dtrans : unotools offapi DESKTOP:rdbmaker stoc LIBXSLT:libxslt NULL -dr dtrans usr1 - all dr_mkout NULL -dr dtrans\inc nmake - all dr_inc NULL -dr dtrans\source\cnttype nmake - all dr_cnttype dr_generic dr_inc NULL -dr dtrans\source\win32\misc nmake - w dr_win32_misc dr_inc NULL -dr dtrans\source\win32\mtaole nmake - w dr_win32_mtaole dr_inc NULL -dr dtrans\source\win32\ftransl nmake - w dr_win32_ftransl dr_cnttype dr_win32_misc.w dr_inc NULL -dr dtrans\source\win32\clipb nmake - w dr_win32_clipb dr_win32_misc.w dr_inc NULL -dr dtrans\source\win32\dnd nmake - w dr_win32_dnd dr_cnttype dr_win32_misc.w dr_win32_dtobj.w dr_inc NULL -dr dtrans\source\win32\dtobj nmake - w dr_win32_dtobj dr_win32_clipb.w dr_win32_misc.w dr_win32_ftransl.w dr_inc NULL -dr dtrans\source\os2\clipb nmake - p dr_os2_clipb dr_inc NULL -dr dtrans\util nmake - all dr_util dr_cnttype dr_win32_misc.w dr_win32_mtaole.w dr_win32_ftransl.w dr_win32_clipb.w dr_win32_dnd.w dr_win32_dtobj.w dr_inc NULL -dr dtrans\source\generic nmake - all dr_generic dr_inc NULL - - +dr dtrans\prj nmake - all dr_prj NULL diff --git a/dtrans/prj/d.lst b/dtrans/prj/d.lst index d2332c2802ea..e69de29bb2d1 100644 --- a/dtrans/prj/d.lst +++ b/dtrans/prj/d.lst @@ -1,14 +0,0 @@ -..\%__SRC%\lib\lib*.so %_DEST%\lib -..\%__SRC%\bin\*.dll %_DEST%\bin\*.dll -..\%__SRC%\lib\*.dylib %_DEST%\lib\*.dylib - -..\source\win32\clipb\sysdtrans.xml %_DEST%\xml\sysdtrans.xml -..\source\win32\dnd\dnd.xml %_DEST%\xml\dnd.xml -..\source\win32\ftransl\ftransl.xml %_DEST%\xml\ftransl.xml -..\source\cnttype\mcnttype.xml %_DEST%\xml\mcnttype.xml -..\source\generic\dtrans.xml %_DEST%\xml\dtrans.xml -..\%__SRC%\misc\dnd.component %_DEST%\xml\dnd.component -..\%__SRC%\misc\dtrans.component %_DEST%\xml\dtrans.component -..\%__SRC%\misc\ftransl.component %_DEST%\xml\ftransl.component -..\%__SRC%\misc\mcnttype.component %_DEST%\xml\mcnttype.component -..\%__SRC%\misc\sysdtrans.component %_DEST%\xml\sysdtrans.component diff --git a/dtrans/prj/makefile.mk b/dtrans/prj/makefile.mk new file mode 100644 index 000000000000..d30ff8a47e6b --- /dev/null +++ b/dtrans/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 |