tinyproxy/Makefile.am

42 lines
736 B
Makefile
Raw Normal View History

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 \
tests
# tools want this on a single line
ACLOCAL_AMFLAGS = -I m4macros
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 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
test: all
./tests/scripts/run_tests.sh
valgrind-test: all
./tests/scripts/run_tests_valgrind.sh