summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: e54db162c0d0c8c8fd03aaeaeac0d13e849c1e72 (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
ACLOCAL_AMFLAGS = -I m4

SUBDIRS = extensions lib src data m4 tests

dist-hook:
	chmod u+w ${distdir}/ChangeLog
	if test -d _darcs; then darcs changes >${distdir}/ChangeLog; fi

valgrind:
	cd tests && $(MAKE) valgrind

torture:
	cd tests && $(MAKE) torture

forever:
	cd tests && $(MAKE) forever

LCOV_EXECUTABLES=scripts/lcov/lcov		\
                 scripts/lcov/gendesc	\
                 scripts/lcov/genhtml	\
                 scripts/lcov/geninfo	\
                 scripts/lcov/genpng

EXTRA_DIST=$(LCOV_EXECUTABLES)

.PHONY: always-run

$(LCOV_EXECUTABLES): always-run
	chmod +x $(srcdir)/$@

.PHONY: lcov

lcov: $(LCOV_EXECUTABLES)

include $(top_srcdir)/rules/lcov.mak