2009-09-13 06:43:21 +08:00
|
|
|
SUBDIRS = \
|
|
|
|
src \
|
|
|
|
data \
|
|
|
|
etc \
|
2009-09-14 19:26:12 +08:00
|
|
|
docs \
|
2009-09-13 06:43:21 +08:00
|
|
|
m4macros \
|
2009-09-16 22:35:39 +08:00
|
|
|
tests
|
2003-03-11 04:04:52 +08:00
|
|
|
|
2009-09-13 19:44:08 +08:00
|
|
|
# tools want this on a single line
|
|
|
|
ACLOCAL_AMFLAGS = -I m4macros
|
|
|
|
|
2010-01-18 20:05:51 +08:00
|
|
|
AUTHORS: authors.xml authors.xsl
|
|
|
|
if HAVE_XSLTPROC
|
|
|
|
$(AM_V_GEN) $(XSLTPROC) authors.xsl $< > $(@) || rm -f $(@)
|
|
|
|
else
|
|
|
|
@echo "*** xsltproc is required to regenerate $(@) ***"; exit 1;
|
|
|
|
endif
|
|
|
|
|
|
|
|
validate-authors:
|
|
|
|
if HAVE_XMLLINT
|
|
|
|
@$(XMLLINT) --noout --path $(srcdir) --valid authors.xml || \
|
|
|
|
( echo "*** authors.xml IS INVALID ***"; exit 1; )
|
|
|
|
endif
|
|
|
|
|
|
|
|
all-local: AUTHORS
|
|
|
|
|
|
|
|
check-local: validate-authors
|
|
|
|
|
2009-09-13 06:43:21 +08:00
|
|
|
EXTRA_DIST = \
|
2010-01-18 21:15:13 +08:00
|
|
|
authors.dtd \
|
|
|
|
authors.xml \
|
|
|
|
authors.xsl \
|
2009-09-13 06:43:21 +08:00
|
|
|
autogen.sh \
|
2009-09-15 03:30:27 +08:00
|
|
|
tinyproxy-indent.sh \
|
2009-09-13 06:43:21 +08:00
|
|
|
TODO
|
2009-09-27 17:16:39 +08:00
|
|
|
|
|
|
|
test: all
|
|
|
|
./tests/scripts/run_tests.sh
|
|
|
|
|
|
|
|
valgrind-test: all
|
|
|
|
./tests/scripts/run_tests_valgrind.sh
|