aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 6d0fe8dddd11a485d34639f890cf34cac5632119 (plain)
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
46
47
48
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}

SUBDIRS = \
	data \
	libayatana-indicator \
	tools

tools: libayatana-indicator

if WANT_TESTS
SUBDIRS += \
	tests

tests: libayatana-indicator
endif

DISTCHECK_CONFIGURE_FLAGS = --disable-deprecations

DISTCLEANFILES = \
	libayatana-indicator-*.tar.gz

dist-hook:
	@if test -d "$(top_srcdir)/.git"; \
	    then \
	        echo Creating ChangeLog && \
	        ( cd "$(top_srcdir)" && \
	        echo '# Generated by Makefile. Do not edit.'; echo; \
	        $(top_srcdir)/missing --run git --no-pager log --since "1970" --format="%ai %aN (%h) %n%n%x09*%w(68,0,10) %s%d%n") > 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
	@if test -d "$(top_srcdir)/.git"; \
	    then \
	        echo Creating AUTHORS && \
	            ( cd "$(top_srcdir)" && \
	            echo '# Generated by Makefile. Do not edit.'; echo; \
	            $(top_srcdir)/missing --run  git log | grep -e "^Author:" -e "Committer:" | cut -d ":" -f 2 | cut -d "<" -f 1 | sort -u) > AUTHORS.tmp \
	            && mv -f AUTHORS.tmp $(top_distdir)/AUTHORS \
	            || (rm -f AUTHORS.tmp; \
	                echo Failed to generate AUTHORS >&2 ); \
	    else \
	        echo Failed to generate AUTHORS: not a branch >&2; \
	fi

include $(top_srcdir)/Makefile.am.coverage