comparison xml/ja/GNUmakefile @ 734:99ea52dbb4d4

Moved all rules to the main makefile leaving language specific makefiles with only the lists of translated documents.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 17 Oct 2012 14:30:05 +0000
parents 8afb4cbc63bb
children
comparison
equal deleted inserted replaced
733:7f8e85a50845 734:99ea52dbb4d4
1 DOC_LANG = ja
2
3 DOCS = \ 1 DOCS = \
4 faq \ 2 faq \
5 http/request_processing \ 3 http/request_processing \
6 http/server_names \ 4 http/server_names \
7 http/configuring_https_servers \ 5 http/configuring_https_servers \
8 debugging_log \ 6 debugging_log \
9 http/converting_rewrite_rules \ 7 http/converting_rewrite_rules \
10 8
11 DOCS_XML = $(foreach name, $(DOCS), xml/$(DOC_LANG)/docs/$(name).xml)
12 DOCS_HTML = $(foreach name, $(DOCS), $(OUT)/$(DOC_LANG)/docs/$(name).html)
13
14 FAQ = \ 9 FAQ = \
15 sys_errlist \ 10 sys_errlist \
16
17 FAQ_XML = $(foreach name, $(FAQ), xml/$(DOC_LANG)/docs/$(name).xml)
18 FAQ_HTML = $(foreach name, $(FAQ), $(OUT)/$(DOC_LANG)/docs/$(name).html)
19
20 $(DOC_LANG): \
21 $(OUT)/$(DOC_LANG)/index.html \
22 $(OUT)/$(DOC_LANG)/docs/index.html \
23 $(DOCS_HTML) \
24 $(FAQ_HTML) \
25
26 $(OUT)/$(DOC_LANG)/docs/index.html: \
27 $(DOCS_XML) \
28
29 $(OUT)/$(DOC_LANG)/docs/faq.html: \
30 $(FAQ_XML) \