annotate DOCS/xml/Makefile @ 20300:30b75e573d5c

r20288: vf uspp description: it now uses snow, not mpeg4 r20304: What is the meaning of the numbers on the status line during the encoding process?
author kraymer
date Thu, 19 Oct 2006 13:19:41 +0000
parents 50af37f6cc42
children f6f6cd1f661c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9674
461f71ba8af4 XML version of MPlayer's doc
nicolas
parents:
diff changeset
1 # Makefile for generating the HTML documentation
461f71ba8af4 XML version of MPlayer's doc
nicolas
parents:
diff changeset
2
461f71ba8af4 XML version of MPlayer's doc
nicolas
parents:
diff changeset
3 # List of subdirectories to be processed.
18126
50af37f6cc42 English docs should be built first.
diego
parents: 18124
diff changeset
4 SUBDIRS = en es fr hu pl cs de ru
9674
461f71ba8af4 XML version of MPlayer's doc
nicolas
parents:
diff changeset
5
11200
eae346fd3769 Big consistency overhaul, targets and variables renamed to *-single and
diego
parents: 11188
diff changeset
6 # Generated chunked HTML files go here.
eae346fd3769 Big consistency overhaul, targets and variables renamed to *-single and
diego
parents: 11188
diff changeset
7 HTML_CHUNKED = ../HTML
9759
56be5a7b02a2 Minor improvement: don't create empty dirs.
lumag
parents: 9674
diff changeset
8
11200
eae346fd3769 Big consistency overhaul, targets and variables renamed to *-single and
diego
parents: 11188
diff changeset
9 # Generated single HTML files go here.
eae346fd3769 Big consistency overhaul, targets and variables renamed to *-single and
diego
parents: 11188
diff changeset
10 HTML_SINGLE = ../HTML-single
9674
461f71ba8af4 XML version of MPlayer's doc
nicolas
parents:
diff changeset
11
10309
3c0e1b182fbc XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents: 10110
diff changeset
12 .PHONY: all
11818
c219c245aa50 Build target names shortened.
diego
parents: 11817
diff changeset
13 all: html-chunked html-single
9674
461f71ba8af4 XML version of MPlayer's doc
nicolas
parents:
diff changeset
14
10309
3c0e1b182fbc XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents: 10110
diff changeset
15 .PHONY: help
3c0e1b182fbc XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents: 10110
diff changeset
16 help:
3c0e1b182fbc XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents: 10110
diff changeset
17 @echo "Targets:"
3c0e1b182fbc XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents: 10110
diff changeset
18 @echo "********"
11200
eae346fd3769 Big consistency overhaul, targets and variables renamed to *-single and
diego
parents: 11188
diff changeset
19 @echo "all : Build everything (default)."
11818
c219c245aa50 Build target names shortened.
diego
parents: 11817
diff changeset
20 @echo "html-single : Build HTML documentation (single file)."
11883
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
21 @echo "html-single-LANG : As above, but only one language."
11818
c219c245aa50 Build target names shortened.
diego
parents: 11817
diff changeset
22 @echo "html-chunked : Build HTML documentation (multiple files)."
11883
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
23 @echo "html-chunked-LANG : As above, but only one language."
15126
6555c01128b7 Support syntax checking only
wight
parents: 15101
diff changeset
24 @echo "xmllint : Check syntax of all xml files."
15135
58c628554a33 Typo fix
gpoirier
parents: 15126
diff changeset
25 @echo "xmllint-LANG : Check syntax of LANG xml files."
11200
eae346fd3769 Big consistency overhaul, targets and variables renamed to *-single and
diego
parents: 11188
diff changeset
26 @echo "clean-html-single : Purge the 'HTML-single' directory."
11188
6dfed0b2a300 Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents: 11130
diff changeset
27 @echo "clean-html-chunked: Purge the 'HTML' directory."
11206
e7534574320c html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents: 11200
diff changeset
28 @echo "clean : Purge the 'HTML' and 'HTML-single' directories."
15101
04a5b6407cb6 Add releaseclean target to remove generated files but keep the HTML.
diego
parents: 14393
diff changeset
29 @echo "releaseclean : Remove generated files but keep the HTML."
11188
6dfed0b2a300 Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents: 11130
diff changeset
30 @echo "distclean : Remove ALL generated files."
15171
c047b2d7f7ce releaseclean should now work as expected, crate of Coke going in my direction.
diego
parents: 15135
diff changeset
31 @echo "clean-LANG : Remove HTML files for one language."
c047b2d7f7ce releaseclean should now work as expected, crate of Coke going in my direction.
diego
parents: 15135
diff changeset
32 @echo "releaseclean-LANG : Remove generated files for one language."
11883
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
33 @echo "distclean-LANG : Remove ALL generated files for one language."
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
34 @echo "Substitute LANG for one of $(SUBDIRS)"
9674
461f71ba8af4 XML version of MPlayer's doc
nicolas
parents:
diff changeset
35
11883
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
36 .PHONY: html-chunked chunked-dir
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
37 html-chunked: xsltproc.sh xmllint.sh chunked-dir $(addprefix html-chunked-,$(SUBDIRS))
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
38 chunked-dir:
17963
c15d5f06de5d Simplify mkdir calls, test is not necessary before creating directories,
diego
parents: 17275
diff changeset
39 -mkdir $(HTML_CHUNKED)
9674
461f71ba8af4 XML version of MPlayer's doc
nicolas
parents:
diff changeset
40
11883
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
41 .PHONY: html-single single-dir
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
42 html-single: xsltproc.sh xmllint.sh single-dir $(addprefix html-single-,$(SUBDIRS))
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
43 single-dir:
17963
c15d5f06de5d Simplify mkdir calls, test is not necessary before creating directories,
diego
parents: 17275
diff changeset
44 -mkdir $(HTML_SINGLE)
11188
6dfed0b2a300 Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents: 11130
diff changeset
45
15126
6555c01128b7 Support syntax checking only
wight
parents: 15101
diff changeset
46 .PHONY: xmllint
6555c01128b7 Support syntax checking only
wight
parents: 15101
diff changeset
47 xmllint: xmllint.sh $(addprefix xmllint-,$(SUBDIRS))
6555c01128b7 Support syntax checking only
wight
parents: 15101
diff changeset
48
11188
6dfed0b2a300 Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents: 11130
diff changeset
49 .PHONY: clean-html-chunked
11200
eae346fd3769 Big consistency overhaul, targets and variables renamed to *-single and
diego
parents: 11188
diff changeset
50 clean-html-chunked:
11841
67550c3b21a5 Make the build system print everything it does.
diego
parents: 11818
diff changeset
51 -rm -rf $(HTML_CHUNKED)
11188
6dfed0b2a300 Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents: 11130
diff changeset
52
11200
eae346fd3769 Big consistency overhaul, targets and variables renamed to *-single and
diego
parents: 11188
diff changeset
53 .PHONY: clean-html-single
eae346fd3769 Big consistency overhaul, targets and variables renamed to *-single and
diego
parents: 11188
diff changeset
54 clean-html-single:
11841
67550c3b21a5 Make the build system print everything it does.
diego
parents: 11818
diff changeset
55 -rm -rf $(HTML_SINGLE)
9674
461f71ba8af4 XML version of MPlayer's doc
nicolas
parents:
diff changeset
56
15126
6555c01128b7 Support syntax checking only
wight
parents: 15101
diff changeset
57 .PHONY: releaseclean distclean clean
15171
c047b2d7f7ce releaseclean should now work as expected, crate of Coke going in my direction.
diego
parents: 15135
diff changeset
58 releaseclean: $(addprefix releaseclean-,$(SUBDIRS))
11841
67550c3b21a5 Make the build system print everything it does.
diego
parents: 11818
diff changeset
59 -rm -f html-chunk.xsl html-single.xsl xsltproc.sh xmllint.sh
10309
3c0e1b182fbc XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents: 10110
diff changeset
60
15101
04a5b6407cb6 Add releaseclean target to remove generated files but keep the HTML.
diego
parents: 14393
diff changeset
61 distclean: clean releaseclean
04a5b6407cb6 Add releaseclean target to remove generated files but keep the HTML.
diego
parents: 14393
diff changeset
62
11326
23192e33fad5 Dependencies for autogenerated files added.
diego
parents: 11206
diff changeset
63 xsltproc.sh xmllint.sh:
11841
67550c3b21a5 Make the build system print everything it does.
diego
parents: 11818
diff changeset
64 sh configure
11063
f44ee899fbf1 clean -> clean-html
gabucino
parents: 11052
diff changeset
65
11200
eae346fd3769 Big consistency overhaul, targets and variables renamed to *-single and
diego
parents: 11188
diff changeset
66 clean: clean-html-chunked clean-html-single
11883
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
67
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
68 define lang-def
15171
c047b2d7f7ce releaseclean should now work as expected, crate of Coke going in my direction.
diego
parents: 15135
diff changeset
69 .PHONY: html-chunked-$(1) html-single-$(1) xmllint-$(1) \
c047b2d7f7ce releaseclean should now work as expected, crate of Coke going in my direction.
diego
parents: 15135
diff changeset
70 distclean-$(1) releaseclean-$(1) clean-$(1)
11883
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
71 html-chunked-$(1): xsltproc.sh xmllint.sh chunked-dir
17963
c15d5f06de5d Simplify mkdir calls, test is not necessary before creating directories,
diego
parents: 17275
diff changeset
72 -(mkdir $(HTML_CHUNKED)/$(1))
11883
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
73 $(MAKE) HTMLDIR=../$(HTML_CHUNKED)/$(1) -C $(1) html-chunked
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
74
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
75 html-single-$(1): xsltproc.sh xmllint.sh single-dir
17963
c15d5f06de5d Simplify mkdir calls, test is not necessary before creating directories,
diego
parents: 17275
diff changeset
76 -(mkdir $(HTML_SINGLE)/$(1))
11883
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
77 $(MAKE) HTMLFILE=../$(HTML_SINGLE)/$(1)/MPlayer.html -C $(1) html-single
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
78
15126
6555c01128b7 Support syntax checking only
wight
parents: 15101
diff changeset
79 xmllint-$(1): xmllint.sh
6555c01128b7 Support syntax checking only
wight
parents: 15101
diff changeset
80 $(MAKE) HTMLFILE=../$(HTML_SINGLE)/$(1)/MPlayer.html -C $(1) xmllint
6555c01128b7 Support syntax checking only
wight
parents: 15101
diff changeset
81
15171
c047b2d7f7ce releaseclean should now work as expected, crate of Coke going in my direction.
diego
parents: 15135
diff changeset
82 distclean-$(1): clean-$(1) releaseclean-$(1)
c047b2d7f7ce releaseclean should now work as expected, crate of Coke going in my direction.
diego
parents: 15135
diff changeset
83
c047b2d7f7ce releaseclean should now work as expected, crate of Coke going in my direction.
diego
parents: 15135
diff changeset
84 clean-$(1):
11883
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
85 -rm -rf $(HTML_SINGLE)/$(1) $(HTML_CHUNKED)/$(1)
15171
c047b2d7f7ce releaseclean should now work as expected, crate of Coke going in my direction.
diego
parents: 15135
diff changeset
86
c047b2d7f7ce releaseclean should now work as expected, crate of Coke going in my direction.
diego
parents: 15135
diff changeset
87 releaseclean-$(1):
11883
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
88 $(MAKE) HTMLDIR=../$(HTML_CHUNKED)/$(1) -C $(1) distclean
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
89 endef
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
90
51e14a023339 Structure rewritten, to allow single language build and some simplifications.
wight
parents: 11841
diff changeset
91 $(foreach lang, $(SUBDIRS),$(eval $(call lang-def,$(lang))))