~ubuntu-branches/ubuntu/raring/gedit-plugins/raring-proposed

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2009-06-17 14:15:25 UTC
  • mto: (7.2.1 sid) (1.3.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 32.
  • Revision ID: james.westby@ubuntu.com-20090617141525-cwx8ozzpkpybugo4
Tags: upstream-2.26.2
ImportĀ upstreamĀ versionĀ 2.26.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
EXTRA_DIST =                    \
6
6
        autogen.sh              \
7
 
        ChangeLog               \
8
 
        gnome-doc-utils.make    \
 
7
        ChangeLog-20090414      \
 
8
        gedit-plugins.doap      \
9
9
        intltool-extract.in     \
10
10
        intltool-merge.in       \
11
11
        intltool-update.in
12
12
 
13
13
DISTCLEANFILES =                \
14
 
        gnome-doc-utils.make    \
15
14
        intltool-extract        \
16
15
        intltool-merge          \
17
16
        intltool-update
18
17
 
19
18
DISTCHECK_CONFIGURE_FLAGS = --with-plugins=really-all
 
19
 
 
20
CHANGELOG_START = GEDIT_PLUGINS_2_26_2
 
21
 
 
22
dist-hook:
 
23
        @if test -d "$(srcdir)/.git"; \
 
24
        then \
 
25
                echo Creating ChangeLog && \
 
26
                (GIT_DIR=$(top_srcdir)/.git \
 
27
                  ./missing --run git log $(CHANGELOG_START)^^.. --stat -M -C --name-status  --date=short --no-color) | \
 
28
                  fmt --split-only > ChangeLog.tmp \
 
29
                && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
 
30
                || ( rm -f ChangeLog.tmp ; \
 
31
                  echo Failed to generate ChangeLog >&2 ); \
 
32
        else \
 
33
                echo A git clone is required to generate a ChangeLog >&2; \
 
34
        fi
 
35
 
 
36
-include $(top_srcdir)/git.mk