diff options
author | Stefan Fritsch <sf@apache.org> | 2012-01-23 00:19:57 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2012-01-23 00:19:57 +0100 |
commit | bbf60bffa7512b167d140ef3c0543992a32f01aa (patch) | |
tree | daf36b3ca283eca6591dd45c6bdf389b89b77d8c /Makefile.in | |
parent | ctx->bytes_in is never used. Remove a useless iteration through the brigade (diff) | |
download | apache2-bbf60bffa7512b167d140ef3c0543992a32f01aa.tar.xz apache2-bbf60bffa7512b167d140ef3c0543992a32f01aa.zip |
Add a validate-xml target
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1234642 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 940d037efb..39a1b2e11a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -125,6 +125,14 @@ docs: echo ' http://httpd.apache.org/docs-project/docsformat.html'; \ fi +validate-xml: + @if test -d $(top_srcdir)/docs/manual/build; then \ + cd $(top_srcdir)/docs/manual/build && ./build.sh validate-xml; \ + else \ + echo 'For details on generating the docs, please read:'; \ + echo ' http://httpd.apache.org/docs-project/docsformat.html'; \ + fi + dox: doxygen $(top_srcdir)/docs/doxygen.conf |