blob: 79bd9f429fd1a065a5054c7f1481d6b84fce6c04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Makefile for generating the HTML documentation
include ../../config.mak
# Generated HTML files go here.
HTML = ../HTML
MAIN_XML_ALL = $(foreach lang,$(DOC_LANG_ALL),$(lang)/main.xml)
CONFIGURE_GENERATED = html-chunk.xsl html-single.xsl xsltproc.sh xmllint.sh
all: html-chunked html-single
help:
@echo "Targets:"
@echo "********"
@echo "all : Build everything for configured languages (default)."
@echo "html-single : HTML documentation for configured languages (single file)"
@echo "html-single-LANG : As above, but only one language."
@echo "html-chunked : HTML documentation for configured languages (multiple files)"
@echo "html-chunked-LANG : As above, but only one language."
@echo "xmllint : Check syntax of all xml files."
@echo "xmllint-LANG : Check syntax of LANG xml files."
@echo "clean : Purge the 'HTML' directory."
@echo "releaseclean : Remove generated files but keep the HTML."
@echo "distclean : Remove ALL generated files."
@echo "Substitute LANG for one of $(DOC_LANG_ALL)"
html-chunked html-single: $(CONFIGURE_GENERATED)
html-chunked: $(addprefix html-chunked-,$(DOC_LANGS))
html-single: $(addprefix html-single-,$(DOC_LANGS))
xmllint: xmllint.sh $(addprefix xmllint-,$(DOC_LANG_ALL))
$(foreach lang,$(DOC_LANG_ALL),$(HTML)/$(lang)):
-mkdir -p $@
$(CONFIGURE_GENERATED) $(MAIN_XML_ALL):
sh configure
define lang-def
html-chunked-$(1): $(HTML)/$(1) $(CONFIGURE_GENERATED)
$(MAKE) HTMLDIR=../$$< -C $(1) html-chunked
html-single-$(1): $(HTML)/$(1) $(CONFIGURE_GENERATED)
$(MAKE) HTMLDIR=../$$< -C $(1) html-single
xmllint-$(1): xmllint.sh
$(MAKE) -C $(1) xmllint
endef
$(foreach lang, $(DOC_LANG_ALL),$(eval $(call lang-def,$(lang))))
clean:
rm -rf $(HTML)
releaseclean:
rm -f $(CONFIGURE_GENERATED)
rm -f $(MAIN_XML_ALL)
rm -f $$(find . -name *.xml -type l)
distclean: clean releaseclean
.PHONY: all help html-chunked* html-single* xmllint xmllint-* *clean*
|