2011-12-21 21:43:58 -05:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-12-21 21:43:58 -05:00
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# 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/.
|
2011-12-21 21:43:58 -05:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,macab1))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_componentfile,macab1,connectivity/source/drivers/macab/macab1))
|
|
|
|
|
2013-01-27 01:50:56 +01:00
|
|
|
$(eval $(call gb_Library_use_external,macab1,boost_headers))
|
|
|
|
|
2012-07-02 13:00:50 +01:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,macab1))
|
2011-12-21 21:43:58 -05:00
|
|
|
|
2012-05-23 08:13:17 +02:00
|
|
|
$(eval $(call gb_Library_use_libraries,macab1,\
|
2012-12-21 11:44:27 +02:00
|
|
|
comphelper \
|
2011-12-21 21:43:58 -05:00
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
dbtools \
|
|
|
|
sal \
|
|
|
|
salhelper \
|
2013-05-21 16:24:42 +03:00
|
|
|
tl \
|
2011-12-21 21:43:58 -05:00
|
|
|
))
|
|
|
|
|
2012-05-25 18:16:38 -05:00
|
|
|
$(eval $(call gb_Library_set_include,macab1,\
|
2013-05-07 17:52:16 +02:00
|
|
|
$$(INCLUDE) \
|
|
|
|
-I$(SRCDIR)/connectivity/inc \
|
|
|
|
-I$(SRCDIR)/connectivity/source/inc \
|
|
|
|
-I$(WORKDIR)/YaccTarget/connectivity/source/parse \
|
2012-05-25 18:16:38 -05:00
|
|
|
))
|
|
|
|
|
2011-12-21 21:43:58 -05:00
|
|
|
$(eval $(call gb_Library_add_exception_objects,macab1,\
|
|
|
|
connectivity/source/drivers/macab/MacabDriver \
|
|
|
|
connectivity/source/drivers/macab/MacabServices \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|