diff options
author | Paul Querna <pquerna@apache.org> | 2005-09-26 00:45:39 +0200 |
---|---|---|
committer | Paul Querna <pquerna@apache.org> | 2005-09-26 00:45:39 +0200 |
commit | 81726229400d0fdf34539236b7a484aee6ddb664 (patch) | |
tree | 9b575b91351a39631995f3ca0fc8ce998fceb511 /Makefile.in | |
parent | Synch with 2.2.x branch. (diff) | |
download | apache2-81726229400d0fdf34539236b7a484aee6ddb664.tar.xz apache2-81726229400d0fdf34539236b7a484aee6ddb664.zip |
* Makefile.in
(docs): If the "docs-build" project is available, trigger its build system
to turn the XML sources into HTML. Otherwise, display a URL to the
instructions on how to use the docs build.
* build/rules.mk.in:
(.PHONEY): docs is a fake target.
Submitted By: Daniel Rall <dlr apache.org>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@291480 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index c565254927..e55d1d49d9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -105,11 +105,15 @@ install-build: build/config_vars.out htdocs-srcdir = $(top_srcdir)/docs/docroot -docs:: - mkdir -p ./docs/api - srclib/apr/build/scandoc.pl -i./build/default.pl -p./docs/api/ ./include/*.h +docs: + @if test -d $(top_srcdir)/docs/manual/build; then \ + cd $(top_srcdir)/docs/manual/build && ./build.sh; \ + else \ + echo 'For details on generating the docs, please read:'; \ + echo ' http://httpd.apache.org/docs-project/docsformat.html'; \ + fi -dox:: +dox: doxygen $(top_srcdir)/docs/doxygen.conf install-htdocs: |