~chipaca/unity-lens-music/dont-force-us

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Neil Jagdish Patel
  • Author(s): Alex Launi
  • Date: 2011-09-15 18:08:53 UTC
  • mfrom: (41.1.5 musicstore)
  • Revision ID: neil.patel@canonical.com-20110915180853-hc7natia0x01nwap
Merge in initial support for searching one.ubuntu.com for music to purchase

Show diffs side-by-side

added added

removed removed

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