summaryrefslogtreecommitdiffhomepage
path: root/docs/GNUmakefile
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2011-08-05 09:25:34 +0000
committerIgor Sysoev <igor@sysoev.ru>2011-08-05 09:25:34 +0000
commita6c91b11bf77264badc714e53e710803cf181a73 (patch)
treeb4576ab20a25dda2044d3ef64ab98af86d23f9bc /docs/GNUmakefile
parentf549c03524626bde4ed52c6a009ac769079f5fb4 (diff)
downloadnginx-a6c91b11bf77264badc714e53e710803cf181a73.tar.gz
nginx-a6c91b11bf77264badc714e53e710803cf181a73.tar.bz2
skeleton for documentation processing
Diffstat (limited to 'docs/GNUmakefile')
-rw-r--r--docs/GNUmakefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/GNUmakefile b/docs/GNUmakefile
index fff774408..2d9d4182b 100644
--- a/docs/GNUmakefile
+++ b/docs/GNUmakefile
@@ -52,3 +52,19 @@ docs/xslt/changes.xslt: docs/xsls/changes.xsls
$(call XSLScript, docs/xsls/changes.xsls, $@)
+html: \
+ docs/html/http/ngx_http_core_module.html
+
+docs/html/http/ngx_http_core_module.html: \
+ docs/xml/http/ngx_http_core_module.xml \
+ docs/xslt/module.xslt \
+ docs/dtd/module.dtd
+ $(call XSLT, docs/xslt/module.xslt, $<, $@)
+
+docs/xslt/module.xslt: docs/xsls/module.xsls \
+ docs/xslt/directive.xslt \
+ docs/xslt/content.xslt
+ $(call XSLScript, $<, $@)
+
+docs/xslt/%.xslt: docs/xsls/%.xsls
+ $(call XSLScript, $<, $@)