38e2ef8120
Change-Id: Ib85371542c5d79ef69bc76f6aa388acdfd9dd849 Reviewed-on: https://gerrit.libreoffice.org/10348 Reviewed-by: Timothy Pearson <kb9vqf@pearsoncomputing.net> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
56 lines
1.6 KiB
Makefile
56 lines
1.6 KiB
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
|
|
$(eval $(call gb_Library_Library,tdeabdrv1))
|
|
|
|
$(eval $(call gb_Library_set_include,tdeabdrv1,\
|
|
-I$(SRCDIR)/connectivity/source/inc \
|
|
-I$(SRCDIR)/include/shell \
|
|
$$(INCLUDE) \
|
|
-I$(WORKDIR)/YaccTarget/connectivity/source/parse \
|
|
))
|
|
|
|
$(eval $(call gb_Library_use_sdk_api,tdeabdrv1))
|
|
|
|
$(eval $(call gb_Library_use_externals,tdeabdrv1,\
|
|
tde \
|
|
))
|
|
|
|
$(eval $(call gb_Library_add_libs,tdeabdrv1,\
|
|
-ltdeabc \
|
|
))
|
|
|
|
$(eval $(call gb_Library_use_libraries,tdeabdrv1,\
|
|
cppu \
|
|
cppuhelper \
|
|
sal \
|
|
salhelper \
|
|
dbtools \
|
|
comphelper \
|
|
))
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,tdeabdrv1,\
|
|
connectivity/source/drivers/kab/KColumns \
|
|
connectivity/source/drivers/kab/KTable \
|
|
connectivity/source/drivers/kab/KTables \
|
|
connectivity/source/drivers/kab/KCatalog \
|
|
connectivity/source/drivers/kab/KResultSet \
|
|
connectivity/source/drivers/kab/KStatement \
|
|
connectivity/source/drivers/kab/KPreparedStatement \
|
|
connectivity/source/drivers/kab/KDatabaseMetaData \
|
|
connectivity/source/drivers/kab/KConnection \
|
|
connectivity/source/drivers/kab/KResultSetMetaData \
|
|
connectivity/source/drivers/kab/kcondition \
|
|
connectivity/source/drivers/kab/korder \
|
|
connectivity/source/drivers/kab/kfields \
|
|
connectivity/source/drivers/kab/KDEInit \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|