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

EXTRA_DIST = autogen.sh

SUBDIRS = wocky tools m4 examples tests docs

DISTCHECK_CONFIGURE_FLAGS = --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

include $(top_srcdir)/rules/lcov.mak

CLEANFILES = FIXME.out

check-local::
	egrep -A 5 '[F]IXME|[T]ODO|[X]XX' \
		$(srcdir)/wocky/*.[ch] \
		$(srcdir)/tests/*.[ch] \
		$(srcdir)/examples/*.[ch] \
		> FIXME.out || true