blob: 6cd1bd13e1987833d59183f52d28f2b543429abc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = extensions src data m4 tests
EXTRA_DIST = \
check-coding-style.mk \
check-c-style.sh \
check-whitespace.sh
DISTCHECK_CONFIGURE_FLAGS = --disable-debug
dist-hook:
chmod u+w ${distdir}/ChangeLog
if test -d _darcs; then darcs changes >${distdir}/ChangeLog; fi
check-twisted: check
$(MAKE) -C tests check-twisted
check-extra: check
$(MAKE) -C tests check-extra
|