blob: f8d919012fade538f0495ee6dbf0250c9fb77d9c [file] [log] [blame]
##
## 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 \
-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
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
libignite_thin_client_la_SOURCES = \
os/linux/src/net/net_utils.cpp \
os/linux/src/net/tcp_socket_client.cpp \
src/impl/utility.cpp \
src/impl/protocol_version.cpp \
src/impl/data_channel.cpp \
src/impl/net/remote_type_updater.cpp \
src/impl/message.cpp \
src/impl/ignite_client_impl.cpp \
src/impl/cache/cache_client_proxy.cpp \
src/impl/cache/cache_client_impl.cpp \
src/impl/cache/cache_affinity_info.cpp \
src/impl/data_router.cpp \
src/impl/ssl/ssl_gateway.cpp \
src/impl/ssl/secure_socket_client.cpp \
src/ignite_client.cpp
clean-local:
$(RM) *.gcno *.gcda
clean-docs:
$(RM) $(DX_CLEANFILES)