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

« back to all changes in this revision

Viewing changes to 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:
55
55
                          conf/corosync.conf.example.udpu
56
56
 
57
57
SUBDIRS                 = include lcr lib exec services tools test pkgconfig \
58
 
                          man init
 
58
                          man init conf
 
59
 
 
60
coverity:
 
61
        cov-build --dir=cov make
 
62
        cov-analyze --dir cov
 
63
        cov-format-errors --dir cov
59
64
 
60
65
install-exec-local:
61
66
        $(INSTALL) -d $(DESTDIR)/${COROSYSCONFDIR}/service.d
87
92
 
88
93
$(SPEC): $(SPEC).in
89
94
        rm -f $@-t $@
90
 
        LC_ALL=C date="$(shell date "+%a %b %d %Y")" && \
 
95
        date="$(shell LC_ALL=C date "+%a %b %d %Y")" && \
91
96
        if [ -f .tarball-version ]; then \
92
97
                gitver="$(shell cat .tarball-version)" && \
93
98
                rpmver=$$gitver && \
154
159
.PHONY: gen-ChangeLog
155
160
gen-ChangeLog:
156
161
        if test -d .git; then                                           \
157
 
                $(top_srcdir)/build-aux/gitlog-to-changelog             \
 
162
                LC_ALL=C $(top_srcdir)/build-aux/gitlog-to-changelog            \
158
163
                        --since=$(gen_start_date) > $(distdir)/cl-t;    \
159
164
                rm -f $(distdir)/ChangeLog;                             \
160
165
                mv $(distdir)/cl-t $(distdir)/ChangeLog;                \