~ricmm/+junk/unity-lens_music-sc

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Ricardo Mendoza
  • Date: 2012-09-05 14:20:15 UTC
  • Revision ID: ricardo.mendoza@canonical.com-20120905142015-prem6hiyfshwgm8q
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SUBDIRS = src data po tests
 
2
 
 
3
#
 
4
# Install the music.lens and musicstore.scope files
 
5
#
 
6
lens_in_files = music.lens.in
 
7
lensdir = $(LENSESDIR)/music
 
8
lens_DATA = $(lens_in_files:.lens.in=.lens)
 
9
 
 
10
scopedir = $(lensdir)
 
11
scope_DATA = musicstore.scope
 
12
 
 
13
icondir = $(datadir)/unity/themes
 
14
 
 
15
@INTLTOOL_LENS_RULE@
 
16
 
 
17
DISTCHECK_CONFIGURE_FLAGS = --enable-localinstall
 
18
 
 
19
# ChangeLog file created at distcheck time
 
20
dist-hook:
 
21
        @if test -d "$(srcdir)/.bzr"; \
 
22
        then \
 
23
        echo Creating ChangeLog && \
 
24
      ( cd "$(top_srcdir)" && \
 
25
        echo '# Generated by Makefile. Do not edit.'; echo; \
 
26
        $(top_srcdir)/missing --run bzr log --gnu-changelog ) > ChangeLog.tmp \
 
27
        && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
 
28
        || (rm -f ChangeLog.tmp; \
 
29
                                        echo Failed to generate ChangeLog >&2 ); \
 
30
        else \
 
31
        echo Failed to generate ChangeLog: not a branch >&2; \
 
32
  fi
 
33
 
 
34
EXTRA_DIST = \
 
35
  autogen.sh \
 
36
  $(lens_in_music) \
 
37
  $(scope_DATA) \
 
38
  AUTHORS \
 
39
  COPYING \
 
40
  MAINTAINERS \
 
41
  README
 
42
 
 
43
CLEANFILES = \
 
44
  $(lens_DATA) 
 
45