~alecu/unity-lens-music/rework-credentials-check

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
SUBDIRS = src data po tests

#
# Install the music.lens and musicstore.scope files
#
scope_in_files = \
  banshee.scope.in \
  rhythmbox.scope.in \
  musicstore.scope.in
scopedir = $(SCOPESDIR)/music
scope_DATA = $(scope_in_files:.scope.in=.scope)

icondir = $(datadir)/unity/themes

@INTLTOOL_SCOPE_RULE@

DISTCHECK_CONFIGURE_FLAGS = --enable-localinstall

# ChangeLog file created at distcheck time
dist-hook:
	@if test -d "$(srcdir)/.bzr"; \
	then \
	echo Creating ChangeLog && \
      ( cd "$(top_srcdir)" && \
	echo '# Generated by Makefile. Do not edit.'; echo; \
        $(top_srcdir)/missing --run bzr log --gnu-changelog ) > ChangeLog.tmp \
        && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
        || (rm -f ChangeLog.tmp; \
					echo Failed to generate ChangeLog >&2 ); \
	else \
	echo Failed to generate ChangeLog: not a branch >&2; \
  fi

EXTRA_DIST = \
  autogen.sh \
  $(scope_in_files) \
  AUTHORS \
  COPYING \
  MAINTAINERS \
  README

CLEANFILES = \
  $(scope_DATA)

include $(top_srcdir)/Makefile.am.coverage