~ubuntu-branches/ubuntu/precise/corosync/precise-proposed

« back to all changes in this revision

Viewing changes to tools/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Martin Loschwitz
  • Date: 2011-10-19 14:32:18 UTC
  • mfrom: (1.1.6 upstream) (5.1.16 sid)
  • Revision ID: james.westby@ubuntu.com-20111019143218-ew8phl0raqyog844
Tags: 1.4.2-1
* Changed my email address in debian/control
* Add corosync-blackbox to the corosync package
* Imported Upstream version 1.4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
# THE POSSIBILITY OF SUCH DAMAGE.
31
31
 
32
32
MAINTAINERCLEANFILES    = Makefile.in
33
 
INCLUDES                = -I$(top_builddir)/include  -I$(top_srcdir)/include
 
33
INCLUDES                = -I$(top_builddir)/include  -I$(top_srcdir)/include \
 
34
                          -I$(top_builddir)/include/corosync
34
35
 
35
36
sbin_PROGRAMS           = corosync-fplay corosync-cfgtool \
36
37
                          corosync-keygen corosync-objctl \
37
 
                          corosync-pload corosync-cpgtool corosync-quorumtool
 
38
                          corosync-pload corosync-cpgtool corosync-quorumtool \
 
39
                          corosync-notifyd
38
40
 
39
41
bin_SCRIPTS             = corosync-blackbox
40
42
 
41
 
EXTRA_DIST              = $(bin_SCRIPTS)
 
43
EXTRA_DIST              = $(bin_SCRIPTS) corosync-notifyd.sysconfig.example
42
44
 
43
45
corosync_pload_LDADD    = -lpload -lcoroipcc
44
46
corosync_pload_LDFLAGS  = -L../lib
52
54
                            -lvotequorum -lcoroipcc ../lcr/liblcr.a
53
55
corosync_quorumtool_LDFLAGS = -L../lib
54
56
 
 
57
corosync_notifyd_LDADD = -lcfg -lconfdb ../lcr/liblcr.a -lcoroipcc \
 
58
                           ../exec/coropoll.o $(DBUS_LIBS) $(SNMPLIBS) \
 
59
                           -lquorum
 
60
corosync_notifyd_LDFLAGS = -L../lib
 
61
corosync_notifyd_CPPFLAGS = $(DBUS_CFLAGS)
 
62
 
 
63
 
55
64
lint:
56
 
        -splint $(LINT_FLAGS) $(CFLAGS) *.c
 
65
        -splint $(LINT_FLAGS) $(DBUS_CFLAGS) $(INCLUDES) $(CFLAGS) *.c
 
66
 
 
67