~ubuntu-branches/ubuntu/wily/epiphany-browser/wily

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

if ENABLE_TESTS
SUBDIRS += tests
endif

ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}

NULL =

EXTRA_DIST = 			\
	autogen.sh		\
	COPYING.README		\
	HACKING			\
	MAINTAINERS		\
	ChangeLog		\
	$(NULL)

DISTCHECK_CONFIGURE_FLAGS = \
	--enable-debug			\
	--enable-gtk-doc

@GNOME_CODE_COVERAGE_RULES@

# Ignore gtk theme cache files on distcheck
distuninstallcheck_listfiles = find . -type f -print | grep -v 'icon-theme.cache'

# Build ChangeLog from git history
ChangeLog:
	@if test -f $(top_srcdir)/.git/HEAD; then \
		git log --stat > $@; \
	fi

dist: ChangeLog

.PHONY: ChangeLog