office-gobmx/connectivity/Library_jdbc.mk
Michael Stahl ee67132692 connectivity: remove Package_generated
This one is ugly, the Yacc generated header is used in lots of places;
the dependencies are already right because using the header requires
using the dbtools library which builds the YaccTarget, so just yet
another include path has to be added.

Change-Id: I031fde80ac326551d4719533305b1ae35351ca43
2013-05-07 17:07:44 +02:00

72 lines
2.3 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,jdbc))
$(eval $(call gb_Library_set_componentfile,jdbc,connectivity/source/drivers/jdbc/jdbc))
$(eval $(call gb_Library_use_external,jdbc,boost_headers))
$(eval $(call gb_Library_use_sdk_api,jdbc))
$(eval $(call gb_Library_set_include,jdbc,\
$$(INCLUDE) \
-I$(SRCDIR)/connectivity/inc \
-I$(SRCDIR)/connectivity/source/inc \
-I$(WORKDIR)/YaccTarget/connectivity/source/parse \
))
$(eval $(call gb_Library_use_libraries,jdbc,\
cppu \
cppuhelper \
sal \
salhelper \
jvmaccess \
dbtools \
utl \
jvmfwk \
comphelper \
$(gb_UWINAPI) \
))
$(eval $(call gb_Library_add_exception_objects,jdbc,\
connectivity/source/drivers/jdbc/Array \
connectivity/source/drivers/jdbc/Blob \
connectivity/source/drivers/jdbc/Boolean \
connectivity/source/drivers/jdbc/CallableStatement \
connectivity/source/drivers/jdbc/Class \
connectivity/source/drivers/jdbc/Clob \
connectivity/source/drivers/jdbc/ConnectionLog \
connectivity/source/drivers/jdbc/DatabaseMetaData \
connectivity/source/drivers/jdbc/Date \
connectivity/source/drivers/jdbc/DriverPropertyInfo \
connectivity/source/drivers/jdbc/Exception \
connectivity/source/drivers/jdbc/InputStream \
connectivity/source/drivers/jdbc/JConnection \
connectivity/source/drivers/jdbc/JDriver \
connectivity/source/drivers/jdbc/JStatement \
connectivity/source/drivers/jdbc/Object \
connectivity/source/drivers/jdbc/PreparedStatement \
connectivity/source/drivers/jdbc/Reader \
connectivity/source/drivers/jdbc/Ref \
connectivity/source/drivers/jdbc/ResultSet \
connectivity/source/drivers/jdbc/ResultSetMetaData \
connectivity/source/drivers/jdbc/SQLException \
connectivity/source/drivers/jdbc/SQLWarning \
connectivity/source/drivers/jdbc/String \
connectivity/source/drivers/jdbc/Throwable \
connectivity/source/drivers/jdbc/Timestamp \
connectivity/source/drivers/jdbc/jservices \
connectivity/source/drivers/jdbc/JBigDecimal \
connectivity/source/drivers/jdbc/tools \
connectivity/source/drivers/jdbc/ContextClassLoader \
))
# vim: set noet sw=4 ts=4: