2011-08-10 02:12:48 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-03-28 00:46:06 +02:00
|
|
|
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
|
2011-04-15 17:27:06 +00:00
|
|
|
#
|
2011-03-28 00:46:06 +02:00
|
|
|
# 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/
|
2011-04-15 17:27:06 +00:00
|
|
|
#
|
2011-03-28 00:46:06 +02:00
|
|
|
# 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.
|
2011-04-15 17:27:06 +00:00
|
|
|
#
|
2011-03-28 00:46:06 +02:00
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Bjoern Michaelsen, Canonical Ltd. <bjoern.michaelsen@canonical.com>
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2010 the
|
|
|
|
# Initial Developer. All Rights Reserved.
|
2011-04-15 17:27:06 +00:00
|
|
|
#
|
2011-03-28 00:46:06 +02:00
|
|
|
# Major Contributor(s):
|
2011-04-15 17:27:06 +00:00
|
|
|
#
|
2011-03-28 00:46:06 +02:00
|
|
|
# For minor contributions see the git repository.
|
2011-04-15 17:27:06 +00:00
|
|
|
#
|
2011-03-28 00:46:06 +02:00
|
|
|
# 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.
|
2011-04-15 17:27:06 +00:00
|
|
|
|
|
|
|
$(eval $(call gb_Module_Module,dbaccess))
|
|
|
|
|
2012-02-06 14:29:18 +02:00
|
|
|
ifneq (,$(filter DBCONNECTIVITY,$(BUILD_TYPE)))
|
|
|
|
|
2011-10-26 12:18:11 +03:00
|
|
|
$(eval $(call gb_Module_add_targets,dbaccess,\
|
2011-04-18 14:46:56 +02:00
|
|
|
AllLangResTarget_dba \
|
|
|
|
AllLangResTarget_dbmm \
|
2011-07-23 10:13:13 +02:00
|
|
|
AllLangResTarget_dbu \
|
2011-04-19 16:17:24 +01:00
|
|
|
AllLangResTarget_sdbt \
|
2012-12-12 01:07:09 +02:00
|
|
|
$(if $(filter WNT,$(OS)),Executable_odbcconfig) \
|
2011-04-18 14:46:56 +02:00
|
|
|
Library_dba \
|
|
|
|
Library_dbaxml \
|
|
|
|
Library_dbmm \
|
2011-07-23 10:13:13 +02:00
|
|
|
Library_dbu \
|
2011-04-19 16:01:24 +01:00
|
|
|
Library_sdbt \
|
2011-04-18 14:46:56 +02:00
|
|
|
Package_inc \
|
2013-04-06 13:10:54 +02:00
|
|
|
UIConfig_dbaccess \
|
2013-04-06 15:34:43 +02:00
|
|
|
UIConfig_dbapp \
|
|
|
|
UIConfig_dbbrowser \
|
|
|
|
UIConfig_dbquery \
|
|
|
|
UIConfig_dbrelation \
|
|
|
|
UIConfig_dbtable \
|
|
|
|
UIConfig_dbtdata \
|
2011-10-26 12:18:11 +03:00
|
|
|
))
|
2011-04-15 17:27:06 +00:00
|
|
|
|
2012-02-12 19:34:23 +01:00
|
|
|
$(eval $(call gb_Module_add_check_targets,dbaccess,\
|
|
|
|
))
|
|
|
|
|
2012-02-15 22:27:11 +01:00
|
|
|
# disable test because it still fails in some situations
|
|
|
|
# CppunitTest_dbaccess_macros_test \
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2011-04-15 17:27:06 +00:00
|
|
|
$(eval $(call gb_Module_add_subsequentcheck_targets,dbaccess,\
|
|
|
|
JunitTest_dbaccess_complex \
|
2011-03-28 00:46:06 +02:00
|
|
|
JunitTest_dbaccess_unoapi \
|
2011-04-15 17:27:06 +00:00
|
|
|
))
|
|
|
|
|
2012-02-06 14:29:18 +02:00
|
|
|
endif
|
|
|
|
|
2011-07-30 23:01:01 +03:00
|
|
|
# vim: set noet sw=4 ts=4:
|