summaryrefslogtreecommitdiff
path: root/cpp/lib/client/Makefile.am
blob: 28b96d7844496c87e6bfb64efb1fe40ffd3cd1d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
AM_CXXFLAGS = $(WARNING_CFLAGS)
INCLUDES =				\
  -I$(top_srcdir)/gen			\
  -I$(top_srcdir)/lib/common		\
  -I$(top_srcdir)/lib/common/sys	\
  -I$(top_srcdir)/lib/common/framing	\
  $(APR_CXXFLAGS)

lib_LTLIBRARIES = libclient.la
libclient_la_LDFLAGS = -version-info $(LIBTOOL_VERSION_INFO_ARG)
libclient_la_SOURCES =				\
  ClientChannel.cpp				\
  ClientChannel.h				\
  ClientExchange.cpp				\
  ClientExchange.h				\
  ClientMessage.cpp				\
  ClientMessage.h				\
  ClientQueue.cpp				\
  ClientQueue.h					\
  Connection.cpp				\
  Connection.h					\
  Connector.cpp					\
  Connector.h					\
  IncomingMessage.cpp				\
  IncomingMessage.h				\
  MessageListener.cpp				\
  MessageListener.h				\
  MethodBodyInstances.h				\
  ResponseHandler.cpp				\
  ResponseHandler.h				\
  ReturnedMessageHandler.cpp			\
  ReturnedMessageHandler.h