comparison docs/GNUmakefile @ 4187:b9dade63fcc2

The reference documentation is moving elsewhere.
author Ruslan Ermilov <ru@nginx.com>
date Sun, 09 Oct 2011 06:49:54 +0000
parents d889195c8db4
children 3032f4854b81 0275f587e00b
comparison
equal deleted inserted replaced
4186:cce2fd0acc0f 4187:b9dade63fcc2
22 | sed -e "s/\([^= ]*\)=\([^= ]*\)/--param \1 \"'\2'\"/g") \ 22 | sed -e "s/\([^= ]*\)=\([^= ]*\)/--param \1 \"'\2'\"/g") \
23 $1 $2 23 $1 $2
24 endef 24 endef
25 25
26 26
27 all: changes html 27 all: changes
28 28
29 changes: $(TEMP)/$(NGINX)/CHANGES.ru \ 29 changes: $(TEMP)/$(NGINX)/CHANGES.ru \
30 $(TEMP)/$(NGINX)/CHANGES 30 $(TEMP)/$(NGINX)/CHANGES
31 31
32 32
53 53
54 54
55 docs/xslt/changes.xslt: docs/xsls/changes.xsls 55 docs/xslt/changes.xslt: docs/xsls/changes.xsls
56 56
57 $(call XSLScript, docs/xsls/changes.xsls, $@) 57 $(call XSLScript, docs/xsls/changes.xsls, $@)
58
59 html: \
60 docs/html/ngx_core_module.html \
61 docs/html/http/ngx_http_core_module.html \
62 docs/html/http/ngx_http_mp4_module.html
63
64 docs/html/%.html: \
65 docs/xml/%.xml \
66 docs/xslt/module.xslt \
67 docs/dtd/module.dtd
68 $(call XSLT, docs/xslt/module.xslt, $<, $@)
69
70 docs/html/http/%.html: \
71 docs/xml/http/%.xml \
72 docs/xslt/module.xslt \
73 docs/dtd/module.dtd
74 $(call XSLT, docs/xslt/module.xslt, $<, $@)
75
76 docs/xslt/module.xslt: \
77 docs/xslt/directive.xslt \
78 docs/xslt/content.xslt
79
80 docs/xslt/%.xslt: docs/xsls/%.xsls
81 $(call XSLScript, $<, $@)