-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
53 lines (49 loc) · 1.06 KB
/
Makefile.am
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
44
45
46
47
48
49
50
51
52
53
libmon_types_la_SOURCES = \
mon/PGMap.cc
noinst_LTLIBRARIES += libmon_types.la
if ENABLE_SERVER
if WITH_MON
libmon_la_SOURCES = \
mon/Monitor.cc \
mon/Paxos.cc \
mon/PaxosService.cc \
mon/OSDMonitor.cc \
mon/MDSMonitor.cc \
mon/MonmapMonitor.cc \
mon/PGMonitor.cc \
mon/LogMonitor.cc \
mon/AuthMonitor.cc \
mon/Elector.cc \
mon/HealthMonitor.cc \
mon/DataHealthService.cc \
mon/ConfigKeyService.cc
libmon_la_LIBADD = $(LIBAUTH) $(LIBCOMMON) $(LIBOS) $(LIBMON_TYPES)
noinst_LTLIBRARIES += libmon.la
noinst_HEADERS += \
mon/AuthMonitor.h \
mon/DataHealthService.h \
mon/Elector.h \
mon/LogMonitor.h \
mon/ConfigKeyService.h \
mon/HealthMonitor.h \
mon/HealthService.h \
mon/MDSMonitor.h \
mon/MonmapMonitor.h \
mon/MonCap.h \
mon/MonClient.h \
mon/MonCommands.h \
mon/DumplingMonCommands.h \
mon/MonMap.h \
mon/Monitor.h \
mon/MonitorDBStore.h \
mon/MonOpRequest.h \
mon/OSDMonitor.h \
mon/PGMap.h \
mon/PGMonitor.h \
mon/Paxos.h \
mon/PaxosService.h \
mon/QuorumService.h \
mon/Session.h \
mon/mon_types.h
endif # WITH_MON
endif # ENABLE_SERVER