summaryrefslogtreecommitdiff
path: root/cpp/src/cluster.mk
blob: aa3644785ba20f80e1c1172d458a882477032876 (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
#
# Cluster library makefile fragment, to be included in Makefile.am
# 
lib_LTLIBRARIES += libqpidcluster.la

if CPG

libqpidcluster_la_SOURCES = \
  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/ConnectionInterceptor.h \
  qpid/cluster/ConnectionInterceptor.cpp \
  qpid/cluster/ClassifierHandler.h \
  qpid/cluster/ClassifierHandler.cpp \
  qpid/cluster/ShadowConnectionOutputHandler.h \
  qpid/cluster/PollableCondition.h \
  qpid/cluster/PollableCondition.cpp \
  qpid/cluster/PollableQueue.h

libqpidcluster_la_LIBADD= -lcpg libqpidbroker.la

else
# Empty stub library to satisfy rpm spec file.
libqpidcluster_la_SOURCES = 

endif