2009-09-13 04:13:21 +05:30
|
|
|
SUBDIRS = \
|
|
|
|
src \
|
|
|
|
data \
|
|
|
|
etc \
|
2009-09-14 16:56:12 +05:30
|
|
|
docs \
|
2009-09-13 04:13:21 +05:30
|
|
|
m4macros \
|
2009-09-16 16:35:39 +02:00
|
|
|
tests
|
2003-03-10 20:04:52 +00:00
|
|
|
|
2009-09-13 17:14:08 +05:30
|
|
|
# tools want this on a single line
|
|
|
|
ACLOCAL_AMFLAGS = -I m4macros
|
|
|
|
|
2010-01-18 17:35:51 +05:30
|
|
|
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
|
|
|
|
|
2010-01-26 12:24:41 +05:30
|
|
|
dist_doc_DATA = \
|
2010-01-26 13:26:32 +05:30
|
|
|
AUTHORS \
|
|
|
|
NEWS \
|
2016-12-20 19:26:48 +01:00
|
|
|
README \
|
|
|
|
README.md
|
2010-01-26 12:24:41 +05:30
|
|
|
|
2009-09-13 04:13:21 +05:30
|
|
|
EXTRA_DIST = \
|
2010-01-18 18:45:13 +05:30
|
|
|
authors.dtd \
|
|
|
|
authors.xml \
|
|
|
|
authors.xsl \
|
2009-09-13 04:13:21 +05:30
|
|
|
autogen.sh \
|
2009-09-15 01:00:27 +05:30
|
|
|
tinyproxy-indent.sh \
|
2009-09-13 04:13:21 +05:30
|
|
|
TODO
|
2009-09-27 11:16:39 +02:00
|
|
|
|
|
|
|
test: all
|
|
|
|
./tests/scripts/run_tests.sh
|
|
|
|
|
2010-02-22 23:17:39 +01:00
|
|
|
test-wait:
|
|
|
|
TINYPROXY_TESTS_WAIT=yes $(MAKE) test
|
|
|
|
|
2009-09-27 11:16:39 +02:00
|
|
|
valgrind-test: all
|
|
|
|
./tests/scripts/run_tests_valgrind.sh
|
2010-02-22 23:31:40 +01:00
|
|
|
|
|
|
|
valgrind-test-wait:
|
|
|
|
TINYPROXY_TESTS_WAIT=yes $(MAKE) valgrind-test
|