diff options
author | Mukund Sivaraman <muks@banu.com> | 2010-01-18 17:35:51 +0530 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2010-01-18 17:35:51 +0530 |
commit | 8631a9d531d72b69b22879fe05d01a5e9b73e097 (patch) | |
tree | 0b8a178164a615d18b657068638f4e685bf77129 /Makefile.am | |
parent | d396e5592b9caabff12f5d460a771469eef18eba (diff) |
Update the AUTHORS file
This uses an XML based system now to store author names.
We also keep a pre-generated AUTHORS file checked in.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 7de41f2..d97429c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -9,6 +9,23 @@ SUBDIRS = \ # 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 + EXTRA_DIST = \ autogen.sh \ tinyproxy-indent.sh \ |