summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 1d42904680497f05eba03e90ea4d2d0e3da3d936 (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

SUBDIRS = po module tests po

ACLOCAL_AMFLAGS = -I m4

dist-hook:
	@if test -d "$(srcdir)/.git"; \
	then \
		echo Creating ChangeLog && \
		( cd "$(top_srcdir)" && \
		  echo '# Generate automatically. Do not edit.'; echo; \
		  $(top_srcdir)/missing --run git log --stat --date=short ) > ChangeLog.tmp \
		&& mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
		|| ( rm -f ChangeLog.tmp ; \
		     echo Failed to generate ChangeLog >&2 ); \
	else \
		echo A git clone is required to generate a ChangeLog >&2; \
	fi

if WITH_COVERAGE
coverage:
	mkdir -p tests/coverage
	$(LCOV) --directory . --zerocounters
	$(MAKE) check
	$(LCOV) --directory . --capture --output-file tests/coverage.info
	$(GENHTML) --output-directory tests/coverage tests/coverage.info
	@echo "file://$(abs_top_builddir)/tests/coverage/index.html"
endif

EXTRA_DIST = config.rpath