blob: 5ce29048eef424a319ecabbac06a5ae084b11e31 [file]
##
## Licensed to the Apache Software Foundation (ASF) under one or more
## contributor license agreements. See the NOTICE file distributed with
## this work for additional information regarding copyright ownership.
## The ASF licenses this file to You under the Apache License, Version 2.0
## (the "License"); you may not use this file except in compliance with
## the License. You may obtain a copy of the License at
##
## http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
##
ACLOCAL_AMFLAGS =-I m4
lib_LTLIBRARIES = libignite-thin-client.la
SUBDIRS = \
include
AM_CPPFLAGS = \
-I$(srcdir)/include \
-I$(srcdir)/src \
-I@top_srcdir@/common/include \
-I@top_srcdir@/common/os/linux/include \
-I@top_srcdir@/binary/include \
-I@top_srcdir@/network/include \
-I@top_srcdir@/network/os/linux/include \
-DIGNITE_IMPL \
-D__STDC_LIMIT_MACROS \
-D__STDC_CONSTANT_MACROS
AM_CXXFLAGS = \
-Wall \
-std=c++03
libignite_thin_client_la_LIBADD = \
@top_srcdir@/binary/libignite-binary.la \
@top_srcdir@/network/libignite-network.la
libignite_thin_client_la_LDFLAGS = \
-no-undefined \
-ldl \
-version-info 0:0:0 \
-release $(PACKAGE_VERSION)
libignite_thin_client_la_DEPENDENCIES = \
@top_srcdir@/binary/libignite-binary.la \
@top_srcdir@/network/libignite-network.la
libignite_thin_client_la_SOURCES = \
src/impl/data_channel.cpp \
src/impl/utility.cpp \
src/impl/protocol_version.cpp \
src/impl/ignite_node.cpp \
src/impl/ignite_client_impl.cpp \
src/impl/data_router.cpp \
src/impl/affinity/affinity_topology_version.cpp \
src/impl/affinity/affinity_assignment.cpp \
src/impl/affinity/affinity_manager.cpp \
src/impl/remote_type_updater.cpp \
src/impl/message.cpp \
src/impl/cache/cache_client_proxy.cpp \
src/impl/cache/cache_client_impl.cpp \
src/ignite_client.cpp
clean-local:
$(RM) *.gcno *.gcda
clean-docs:
$(RM) $(DX_CLEANFILES)