Update Changelog
[profile/ivi/rygel-gst-0-10-plugins.git] / Makefile.am
1 SUBDIRS = src data tests po
2
3
4 DISTCHECK_CONFIGURE_FLAGS =
5
6 # Extra clean files so that maintainer-clean removes *everything*
7 MAINTAINERCLEANFILES = aclocal.m4 compile config.guess config.sub configure depcomp install-sh ltmain.sh Makefile.in missing config.h.in
8
9 ACLOCAL_AMFLAGS = -I m4
10
11 # see build-aux/git-version-get for details
12 BUILT_SOURCES = $(top_srcdir)/.version
13 $(top_srcdir)/.version:
14         echo $(VERSION) > $@-t && mv $@-t $@
15 dist-hook:
16         echo $(VERSION) > $(distdir)/.tarball-version
17         @if test -d "$(srcdir)/.git"; \
18                 then \
19                                 echo Creating ChangeLog && \
20                                 ( cd "$(top_srcdir)" && \
21                                   echo '# Generated by Makefile. Do not edit.'; echo; \
22                                   "$(top_srcdir)"/build-aux/missing --run git log --stat ) > ChangeLog.tmp \
23                                 && mv -f ChangeLog.tmp $(distdir)/ChangeLog \
24                                 || ( rm -f ChangeLog.tmp ; \
25                                          echo Failed to generate ChangeLog >&2 ); \
26                 else \
27                                 echo A git clone is required to generate a ChangeLog >&2; \
28                 fi