summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: ba099d87640e72e4c7cb8ce8193d4095aa5727a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
ACLOCAL_AMFLAGS = -I m4

SUBDIRS = tools extensions lib src data m4 tests docs plugins salut

DISTCHECK_CONFIGURE_FLAGS = --disable-debug --enable-gtk-doc

dist-hook:
	chmod u+w ${distdir}/ChangeLog
	if test -d ${top_srcdir}/.git; then \
		git log --stat > ${distdir}/ChangeLog || \
		git log > ${distdir}/ChangeLog; \
	fi

valgrind:
	cd tests && $(MAKE) valgrind

torture:
	cd tests && $(MAKE) torture

forever:
	cd tests && $(MAKE) forever

include $(top_srcdir)/rules/lcov.mak