~ubuntu-branches/ubuntu/utopic/pacemaker/utopic-proposed

« back to all changes in this revision

Viewing changes to crmd/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez
  • Date: 2013-07-16 16:40:24 UTC
  • mfrom: (1.1.11) (2.2.3 experimental)
  • Revision ID: package-import@ubuntu.com-20130716164024-lvwrf4xivk1wdr3c
Tags: 1.1.9+git20130321-1ubuntu1
* Resync from debian expiremental.
* debian/control:
  - Use lower version for Build-Depends on libcorosync-dev
    and libqb-dev.
  - Build-Depends on libcfg-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
## binary progs
26
26
halib_PROGRAMS  = crmd
27
 
noinst_PROGRAMS = atest
28
27
 
29
28
## SOURCES
30
29
 
32
31
                fsa_matrix.h fsa_proto.h crmd_utils.h crmd_callbacks.h \
33
32
                crmd_lrm.h te_callbacks.h tengine.h
34
33
 
35
 
atest_SOURCES   = atest.c
36
 
atest_LDADD     = $(top_builddir)/lib/common/libcrmcommon.la
37
 
 
38
 
 
39
34
crmd_SOURCES    = main.c crmd.c corosync.c                                      \
40
 
                fsa.c control.c messages.c ccm.c callbacks.c            \
 
35
                fsa.c control.c messages.c membership.c callbacks.c             \
41
36
                election.c join_client.c join_dc.c subsystems.c         \
42
 
                cib.c pengine.c tengine.c lrm.c                         \
 
37
                cib.c pengine.c tengine.c lrm.c lrm_state.c remote_lrmd_ra.c    \
43
38
                utils.c misc.c te_events.c te_actions.c te_utils.c te_callbacks.c
44
39
 
 
40
if BUILD_HEARTBEAT_SUPPORT
 
41
crmd_SOURCES += heartbeat.c
 
42
endif
 
43
 
45
44
crmd_LDADD      = $(top_builddir)/lib/fencing/libstonithd.la            \
46
45
                $(top_builddir)/lib/transition/libtransitioner.la       \
47
46
                $(top_builddir)/lib/pengine/libpe_rules.la              \
48
47
                $(top_builddir)/lib/cib/libcib.la                       \
49
48
                $(top_builddir)/lib/cluster/libcrmcluster.la            \
50
49
                $(top_builddir)/lib/common/libcrmcommon.la              \
51
 
                $(CLUSTERLIBS) -llrm
 
50
                $(top_builddir)/lib/services/libcrmservice.la           \
 
51
                $(top_builddir)/lib/lrmd/liblrmd.la             \
 
52
                $(CLUSTERLIBS)
52
53
if BUILD_XML_HELP
53
54
man7_MANS =     crmd.7
54
55