diff docs/GNUmakefile @ 3996:fc808f006ff4

skeleton for documentation processing
author Igor Sysoev <igor@sysoev.ru>
date Fri, 05 Aug 2011 09:25:34 +0000
parents 3ce6b8cedcb9
children cb90f030acfd
line wrap: on
line diff
--- a/docs/GNUmakefile
+++ b/docs/GNUmakefile
@@ -52,3 +52,19 @@ docs/xslt/changes.xslt:		docs/xsls/chang
 
 	$(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, $<, $@)