~ubuntu-branches/ubuntu/trusty/libgweather/trusty-updates

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-05-27 11:58:15 UTC
  • mfrom: (13.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20130527115815-l51yffuy20gbv9q0
Tags: 3.8.0-1ubuntu1
* Sync with Debian (LP: #1184168). Remaining changes: 
  - debian/control.in, debian/rules:
    + Run autoreconf
  - debian/rules:
    + Generate POT files on build
  - debian/patches/01_gettext_not_xml.patch: 
    + using gettext rather than add translations to the xml databases
  - debian/patches/02_no_external_gettext.patch:
    + Can't have both IT_PROG_INTLTOOL and AM_GNU_GETTEXT

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SUBDIRS = libgweather icons doc data po po-locations
 
1
SUBDIRS = data libgweather schemas icons doc po po-locations
2
2
 
3
3
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
4
4
 
5
 
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-introspection
 
5
AM_DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-introspection
6
6
 
7
7
EXTRA_DIST =            \
8
8
        HACKING         \
26
26
        $(srcdir)/m4/gtk-doc.m4 \
27
27
        $(srcdir)/m4/intltool.m4
28
28
 
 
29
CHANGELOG_GIT_RANGE = LIBGWEATHER_2_26_1..
 
30
dist-hook:
 
31
        $(AM_V_GEN)if test -d "$(srcdir)/.git"; then \
 
32
          ( echo '# Generated by Makefile. Do not edit.'; echo; \
 
33
            GIT_DIR="$(top_srcdir)/.git" ./missing --run \
 
34
            git log $(CHANGELOG_GIT_RANGE) --no-color -M -C --name-status ) \
 
35
          > ChangeLog.tmp \
 
36
          && mv -f ChangeLog.tmp $(distdir)/ChangeLog \
 
37
          || ( rm -f ChangeLog.tmp ; echo Failed to generate ChangeLog >&2 ); \
 
38
        else \
 
39
          echo A git checkout is required to generate ChangeLog >&2; \
 
40
        fi
 
41
 
 
42
GITIGNOREFILES = $(PACKAGE)-\*.tar.{gz,bz2,xz}
29
43
-include $(top_srcdir)/git.mk