~ubuntu-branches/ubuntu/raring/gwibber/raring-proposed

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Package Import Robot
  • Author(s): Ken VanDine
  • Date: 2013-04-03 01:03:12 UTC
  • mfrom: (1.2.2)
  • Revision ID: package-import@ubuntu.com-20130403010312-vtjegq0c7ogvm83e
Tags: 3.7.0bzr13.04.02-0ubuntu1
* Ported to use Friends (LP: #1156979)
* New icons from Armando Lara
* debian/control
  - added transitional packages for gwibber-* to friends-*

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SUBDIRS = man bin gwibber data libgwibber libgwibber-gtk vapi po client examples
2
 
 
3
 
if HAVE_UNITY
4
 
SUBDIRS += lens
5
 
endif
6
 
 
7
 
 
8
 
pkgconfigdir = $(libdir)/pkgconfig
9
 
pkgconfig_DATA = \
10
 
        gwibber-@GWIBBER_API_VERSION@.pc \
11
 
        gwibber-gtk-@GWIBBER_API_VERSION@.pc
12
 
 
13
 
# Test reports
14
 
.PHONY: check-report
15
 
check-report:
16
 
        $(MAKE) -C tests/ $(@)
17
 
 
18
 
# Distribute pot file
19
 
update-pot:
20
 
        $(MAKE) -C po "$(GETTEXT_PACKAGE).pot"
21
 
 
22
 
DISTCHECK_CONFIGURE_FLAGS = --enable-localinstall --enable-introspection --enable-maintainer-flags=no --enable-unity
23
 
 
24
 
DIST_SUBDIRS = ${SUBDIRS} tests
25
 
 
26
 
DISTCLEANFILES = \
27
 
        gwibber-@GWIBBER_API_VERSION@.pc \
28
 
        gwibber-gtk-@GWIBBER_API_VERSION@.pc \
29
 
        intltool-extract \
30
 
        intltool-merge \
31
 
        intltool-update
32
 
EXTRA_DIST = \
33
 
        gwibber-@GWIBBER_API_VERSION@.pc.in \
34
 
        gwibber-gtk-@GWIBBER_API_VERSION@.pc.in \
35
 
        autogen.sh \
36
 
        COPYING.GPL-3 \
37
 
        COPYING.LGPL-2.1 \
38
 
        intltool-extract.in \
39
 
        intltool-merge.in \
40
 
        intltool-update.in
41
 
 
42
 
dist-hook: update-pot
43
 
        @if test -d "$(top_srcdir)/.bzr"; \
44
 
                then \
45
 
                        echo Creating ChangeLog && \
46
 
                                ( cd "$(top_srcdir)" && \
47
 
                                echo '# Generated by Makefile. Do not edit.'; echo; \
48
 
                                $(top_srcdir)/missing --run bzr log --gnu-changelog ) > ChangeLog.tmp \
49
 
                                && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
50
 
                                || (rm -f ChangeLog.tmp; \
51
 
                                        echo Failed to generate ChangeLog >&2 ); \
52
 
        else \
53
 
                echo Failed to generate ChangeLog: not a branch >&2; \
54
 
        fi