Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
f55eed29
Kaydet (Commit)
f55eed29
authored
Nis 05, 2012
tarafından
David Ostrovsky
Kaydeden (comit)
David Tardon
Nis 08, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
gbuild conversion: rdbmaker module
dmake stuff removed
üst
44958240
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
103 additions
and
127 deletions
+103
-127
Makefile
Makefile
+1
-1
Repository.mk
Repository.mk
+1
-0
RepositoryModule_ooo.mk
RepositoryModule_ooo.mk
+1
-0
Executable_rdbmaker.mk
rdbmaker/Executable_rdbmaker.mk
+58
-0
Makefile
rdbmaker/Makefile
+7
-0
Module_rdbmaker.mk
rdbmaker/Module_rdbmaker.mk
+33
-0
build.lst
rdbmaker/prj/build.lst
+1
-5
d.lst
rdbmaker/prj/d.lst
+0
-3
makefile.mk
rdbmaker/prj/makefile.mk
+1
-0
makefile.mk
rdbmaker/source/codemaker/makefile.mk
+0
-55
makefile.mk
rdbmaker/source/rdbmaker/makefile.mk
+0
-63
No files found.
Makefile
Dosyayı görüntüle @
f55eed29
...
...
@@ -87,6 +87,7 @@ psprint_config\
qadevOOo
\
regexp
\
reportdesign
\
rdbmaker
\
ridljar
\
rsc
\
sal
\
...
...
@@ -214,7 +215,6 @@ postgresql\
postprocess
\
python
\
pyuno
\
rdbmaker
\
readlicense_oo
\
redland
\
registry
\
...
...
Repository.mk
Dosyayı görüntüle @
f55eed29
...
...
@@ -40,6 +40,7 @@ $(eval $(call gb_Helper_register_executables,NONE, \
osl_process_child \
pdf2xml \
pdfunzip \
rdbmaker \
rsc \
rscdep \
saxparser \
...
...
RepositoryModule_ooo.mk
Dosyayı görüntüle @
f55eed29
...
...
@@ -86,6 +86,7 @@ $(eval $(call gb_Module_add_moduledirs,ooo,\
package
\
padmin
\
psprint_config
\
rdbmaker
\
regexp
\
reportdesign
\
ridljar
\
...
...
rdbmaker/Executable_rdbmaker.mk
0 → 100644
Dosyayı görüntüle @
f55eed29
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2012 David Ostrovsky <d.ostrovsky@gmx.de> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
$(eval $(call gb_Executable_Executable,rdbmaker))
$(eval $(call gb_Executable_use_api,rdbmaker,\
udkapi \
))
$(eval $(call gb_Executable_set_include,rdbmaker,\
-I$(SRCDIR)/rdbmaker/inc \
$$(INCLUDE) \
))
$(eval $(call gb_Executable_use_libraries,rdbmaker,\
sal \
salhelper \
reg \
cppu \
cppuhelper \
))
$(eval $(call gb_Executable_add_exception_objects,rdbmaker,\
rdbmaker/source/rdbmaker/rdbmaker \
rdbmaker/source/rdbmaker/rdbtype \
rdbmaker/source/rdbmaker/rdboptions \
rdbmaker/source/rdbmaker/typeblop \
rdbmaker/source/rdbmaker/specialtypemanager \
rdbmaker/source/codemaker/global \
rdbmaker/source/codemaker/options \
rdbmaker/source/codemaker/typemanager \
rdbmaker/source/codemaker/dependency \
))
# vim:set shiftwidth=4 softtabstop=4 expandtab:
rdbmaker/Makefile
0 → 100644
Dosyayı görüntüle @
f55eed29
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
module_directory
:=
$
(
dir
$
(
realpath
$
(
firstword
$(MAKEFILE_LIST)
)))
include
$(module_directory)/../solenv/gbuild/partial_build.mk
# vim: set noet sw=4 ts=4:
rdbmaker/Module_rdbmaker.mk
0 → 100644
Dosyayı görüntüle @
f55eed29
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License or as specified alternatively below. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# Major Contributor(s):
# Copyright (C) 2012 David Ostrovsky <d.ostrovsky@gmx.de> (initial developer)
#
# All Rights Reserved.
#
# For minor contributions see the git repository.
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
# instead of those above.
$(eval $(call gb_Module_Module,rdbmaker))
$(eval $(call gb_Module_add_targets,rdbmaker,\
Executable_rdbmaker \
))
# vim:set shiftwidth=4 softtabstop=4 expandtab:
rdbmaker/prj/build.lst
Dosyayı görüntüle @
f55eed29
rm rdbmaker : cppuhelper NULL
rm rdbmaker usr1 - all rm_mkout NULL
rm rdbmaker\inc get - all rm_inc NULL
rm rdbmaker\prj get - all rm_prj NULL
rm rdbmaker\source\codemaker nmake - all rm_codemaker NULL
rm rdbmaker\source\rdbmaker nmake - all rm_rdbmaker rm_codemaker NULL
rm rdbmaker\prj nmake - all rm_prj NULL
rdbmaker/prj/d.lst
Dosyayı görüntüle @
f55eed29
..\%__SRC%\bin\rdbmaker.exe %_DEST%\bin\rdbmaker.exe
..\%__SRC%\bin\rdbmaker.pdb %_DEST%\bin\rdbmaker.pdb
..\%__SRC%\bin\rdbmaker %_DEST%\bin\rdbmaker
rdbmaker/prj/makefile.mk
0 → 100644
Dosyayı görüntüle @
f55eed29
.INCLUDE
:
gbuildbridge.mk
rdbmaker/source/codemaker/makefile.mk
deleted
100644 → 0
Dosyayı görüntüle @
44958240
#*************************************************************************
#
# 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
=
..
$/
..
PRJNAME
=
codemaker
TARGET
=
$(PRJNAME)
ENABLE_EXCEPTIONS
=
TRUE
# --- Settings -----------------------------------------------------
.INCLUDE
:
settings.mk
# ------------------------------------------------------------------
CXXFILES
=
\
global.cxx
\
options.cxx
\
typemanager.cxx
\
dependency.cxx
OBJFILES
=
\
$(OBJ)$/
global.obj
\
$(OBJ)$/
options.obj
\
$(OBJ)$/
typemanager.obj
\
$(OBJ)$/
dependency.obj
# ------------------------------------------------------------------
.INCLUDE
:
target.mk
rdbmaker/source/rdbmaker/makefile.mk
deleted
100644 → 0
Dosyayı görüntüle @
44958240
#*************************************************************************
#
# 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
=
..
$/
..
PRJNAME
=
codemaker
TARGET
=
rdbmaker
TARGETTYPE
=
CUI
LIBTARGET
=
NO
ENABLE_EXCEPTIONS
=
TRUE
# --- Settings -----------------------------------------------------
.INCLUDE
:
settings.mk
OBJFILES
=
$(OBJ)$/
rdbmaker.obj
\
$(OBJ)$/
rdboptions.obj
\
$(OBJ)$/
typeblop.obj
\
$(OBJ)$/
specialtypemanager.obj
\
$(OBJ)$/
rdbtype.obj
APP1TARGET
=
$(TARGET)
APP1OBJS
=
$(OBJFILES)
APP1STDLIBS
=
\
$(SALLIB)
\
$(SALHELPERLIB)
\
$(REGLIB)
\
$(CPPULIB)
\
$(CPPUHELPERLIB)
APP1LIBS
=
\
$(LB)$/
codemaker.lib
APP1RPATH
=
NONE
.INCLUDE
:
target.mk
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment