~ubuntu-branches/ubuntu/oneiric/alarm-clock-applet/oneiric

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-03-17 09:02:44 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100317090244-ni0ye04mva2hxe10
Tags: 0.3.0-1
* New upstream release
* debian/control:
  + No change bump of Standards-Version to 3.8.4
  + Update build-deps:
    - Drop libglade, libpanel-applet, libgnomevfs2, libgnome{2,ui}
    - Add libxml2-dev and libunique-dev, intltool
* debian/patches/01_update-alarms-eta,patch:
  + Dropped, applied upstream
* debian/(alarm-clock-applet.1, alarm-clock-applet.manpages):
  + Add manpage for alarm-clock-applet, now that the binary is moved to
    /usr/bin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
include $(top_srcdir)/Makefile.decl
2
2
 
3
 
SUBDIRS = src
4
 
 
5
 
EXTRA_DIST += autogen.sh
6
 
 
7
 
dist-hook:
8
 
        bzr log > $(distdir)/ChangeLog
 
3
SUBDIRS = src data po
 
4
 
 
5
EXTRA_DIST +=               \
 
6
    autogen.sh              \
 
7
    intltool-extract.in     \
 
8
    intltool-merge.in       \
 
9
    intltool-update.in
 
10
 
 
11
DISTCLEANFILES =            \
 
12
    intltool-extract        \
 
13
    intltool-merge          \
 
14
    intltool-update
 
15
 
 
16
 
 
17
dist-hook: gen-ChangeLog
 
18
 
 
19
.PHONY: gen-ChangeLog
 
20
gen-ChangeLog:
 
21
        if test -d .bzr; then                           \
 
22
      bzr log > $(distdir)/cl-t;                        \
 
23
      rm -f $(distdir)/ChangeLog;                   \
 
24
      mv $(distdir)/cl-t $(distdir)/ChangeLog;      \
 
25
    fi