~unity8-desktop-session-team/indicator-session/indicator-session-using-upstart

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Stephen M. Webb
  • Date: 2014-03-23 18:49:32 UTC
  • Revision ID: stephen.webb@canonical.com-20140323184932-xshk15wi4mrugu6t
use upstart instead of gnome-session-manager for logout

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
SUBDIRS = \
3
 
        src \
4
 
        data \
5
 
        po
6
 
 
7
 
if BUILD_TESTS
8
 
SUBDIRS += tests
9
 
# build src first
10
 
tests: src
11
 
endif
12
 
 
13
 
EXTRA_DIST = autogen.sh
14
 
 
15
 
DISTCHECK_CONFIGURE_FLAGS = --enable-localinstall
16
 
 
17
 
dist-hook:
18
 
        @if test -d "$(top_srcdir)/.bzr"; \
19
 
                then \
20
 
                        echo Creating ChangeLog && \
21
 
                                ( cd "$(top_srcdir)" && \
22
 
                                echo '# Generated by Makefile. Do not edit.'; echo; \
23
 
                                $(top_srcdir)/missing --run bzr log --gnu-changelog ) > ChangeLog.tmp \
24
 
                                && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
25
 
                                || (rm -f ChangeLog.tmp; \
26
 
                                        echo Failed to generate ChangeLog >&2 ); \
27
 
        else \
28
 
                        echo Failed to generate ChangeLog: not a branch >&2; \
29
 
        fi
30
 
        @if test -d "$(top_srcdir)/.bzr"; \
31
 
                then \
32
 
                        echo Creating AUTHORS && \
33
 
                                ( cd "$(top_srcdir)" && \
34
 
                                echo '# Generated by Makefile. Do not edit.'; echo; \
35
 
                                $(top_srcdir)/missing --run  bzr log --long --levels=0 | grep -e "^\s*author:" -e "^\s*committer:" | cut -d ":" -f 2 | cut -d "<" -f 1 | sort -u) > AUTHORS.tmp \
36
 
                                && mv -f AUTHORS.tmp $(top_distdir)/AUTHORS \
37
 
                                || (rm -f AUTHORS.tmp; \
38
 
                                        echo Failed to generate AUTHORS >&2 ); \
39
 
        else \
40
 
                        echo Failed to generate AUTHORS: not a branch >&2; \
41
 
        fi
42
 
 
43
 
include $(top_srcdir)/Makefile.am.coverage