blob: 1986818a9563a57865e47daee40cff9a3aac06bf (
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: all
$(MAKE) -C tests check-twisted
check-all: check check-twisted
|