~ubuntu-branches/ubuntu/raring/grilo/raring

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Alberto Garcia
  • Date: 2011-07-02 13:48:46 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110702134846-u10hi90nwf6wf3v0
Tags: 0.1.16-1
* New upstream release.
* debian/{grl-inspect.1,libgrilo-0.1-0.manpages,libgrilo-0.1-0.install}:
  use manpage shipped by upstream.
* debian/libgrilo-0.1-0.shlibs: new API, bump shlibs to 0.1.16.
* debian/copyright: Author(s) => Authors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
ACLOCAL_AMFLAGS = -I m4
9
9
 
10
 
SUBDIRS = src libs bindings tools
 
10
SUBDIRS = src libs bindings tools examples
11
11
 
12
12
if ENABLE_TESTS
13
13
SUBDIRS += tests
49
49
 
50
50
distclean-local:
51
51
        -rm -rf autom4te.cache
 
52
 
 
53
dist-hook:
 
54
        @if test -d "$(srcdir)/.git"; \
 
55
        then \
 
56
                echo Creating ChangeLog && \
 
57
                ( cd "$(top_srcdir)" && \
 
58
                  $(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \
 
59
                && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
 
60
                || ( rm -f ChangeLog.tmp ; \
 
61
                     echo Failed to generate ChangeLog >&2 ); \
 
62
        else \
 
63
                echo A git clone is required to generate a ChangeLog >&2; \
 
64
        fi