blob: db428870aa9a8e38c0b2800eecb87f69b90ce634 (
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
|
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
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
|