~ubuntu-desktop/unity-lens-files/ubuntu

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Didier Roche
  • Date: 2011-08-11 08:52:55 UTC
  • mfrom: (14.4.24 upstream)
  • Revision ID: didier.roche@canonical.com-20110811085255-jiqd2j7uf549mj24
* New upstream release.
* Fix some conflicts in src/config.vala and src/daemon.vala after
  merge-upstream. Get it back to sane values (no home dir)

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 files.place file
 
4
# Install the files.lens file
5
5
#
6
 
place_in_files = files.place.in
7
 
placedir = $(datadir)/unity/places
8
 
place_DATA = $(place_in_files:.place.in=.place)
 
6
lens_in_files = files.lens.in
 
7
lensdir = $(LENSESDIR)/files
 
8
lens_DATA = $(lens_in_files:.lens.in=.lens)
9
9
 
10
10
icondir = $(datadir)/unity/themes
11
11
icon_DATA = files.png
12
12
 
13
 
@INTLTOOL_PLACE_RULE@
14
 
 
 
13
@INTLTOOL_LENS_RULE@
15
14
 
16
15
DISTCHECK_CONFIGURE_FLAGS = --enable-localinstall
17
16
 
33
32
EXTRA_DIST = \
34
33
  autogen.sh \
35
34
  files.png \
36
 
  $(place_in_files) \
 
35
  $(lens_in_files) \
37
36
  AUTHORS \
38
37
  COPYING \
39
38
  MAINTAINERS \
40
39
  README
41
40
 
42
41
CLEANFILES = \
43
 
  $(place_DATA)
 
42
  $(lens_DATA)
44
43