blob: e91637dcdedbd309a04d728ba3382044e9cc9c35 (
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
33
34
35
36
37
38
39
40
41
42
43
|
#
# Cluster library makefile fragment, to be included in Makefile.am
#
dmodule_LTLIBRARIES += cluster.la
if CPG
cluster_la_SOURCES = \
qpid/cluster/types.h \
qpid/cluster/Cluster.cpp \
qpid/cluster/Cluster.h \
qpid/cluster/Cpg.cpp \
qpid/cluster/Cpg.h \
qpid/cluster/Dispatchable.h \
qpid/cluster/ClusterPlugin.cpp \
qpid/cluster/ConnectionCodec.h \
qpid/cluster/ConnectionCodec.cpp \
qpid/cluster/Connection.h \
qpid/cluster/Connection.cpp \
qpid/cluster/NoOpConnectionOutputHandler.h \
qpid/cluster/WriteEstimate.h \
qpid/cluster/WriteEstimate.cpp \
qpid/cluster/OutputInterceptor.h \
qpid/cluster/OutputInterceptor.cpp \
qpid/cluster/ProxyInputHandler.h \
qpid/cluster/Event.h \
qpid/cluster/Event.cpp \
qpid/cluster/DumpClient.h \
qpid/cluster/DumpClient.cpp \
qpid/cluster/ClusterMap.h \
qpid/cluster/ClusterMap.cpp \
qpid/cluster/FailoverExchange.h \
qpid/cluster/FailoverExchange.cpp
cluster_la_LIBADD= -lcpg libqpidbroker.la libqpidclient.la
else
# Empty stub library to satisfy rpm spec file.
cluster_la_SOURCES =
endif
cluster_la_LDFLAGS = $(PLUGINLDFLAGS)
|