~sladen/unity-lens-files/unity-place-files-icon-lp745555

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
SUBDIRS = src data po

#
# Install the files.place file
#
place_in_files = files.place.in
placedir = $(datadir)/unity/places
place_DATA = $(place_in_files:.place.in=.place)

icondir = $(datadir)/unity/themes
icon_DATA = files.png

@INTLTOOL_PLACE_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 \
  files.png \
  $(place_in_files) \
  AUTHORS \
  COPYING \
  MAINTAINERS \
  README

CLEANFILES = \
  $(place_DATA)