Mercurial > mplayer.hg
annotate DOCS/xml/Makefile @ 27025:e598c9756181
Ability for specifying TV standard individually for each TV channel.
Slightly modified patch by Ildar devel at pop3 dot ru
author | voroshil |
---|---|
date | Sat, 14 Jun 2008 09:14:16 +0000 |
parents | 2f3c7788aac4 |
children | a316bc1ea84d |
rev | line source |
---|---|
9674 | 1 # Makefile for generating the HTML documentation |
2 | |
3 # List of subdirectories to be processed. | |
23492
2f3c7788aac4
italian xml/html docs translation - first step. up till now accented vowels are
ptt
parents:
22467
diff
changeset
|
4 SUBDIRS = en es fr hu it pl cs de ru zh_CN |
9674 | 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 | 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 | 11 |
11818 | 12 all: html-chunked html-single |
9674 | 13 |
10309
3c0e1b182fbc
XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents:
10110
diff
changeset
|
14 help: |
3c0e1b182fbc
XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents:
10110
diff
changeset
|
15 @echo "Targets:" |
3c0e1b182fbc
XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents:
10110
diff
changeset
|
16 @echo "********" |
11200
eae346fd3769
Big consistency overhaul, targets and variables renamed to *-single and
diego
parents:
11188
diff
changeset
|
17 @echo "all : Build everything (default)." |
11818 | 18 @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
|
19 @echo "html-single-LANG : As above, but only one language." |
11818 | 20 @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
|
21 @echo "html-chunked-LANG : As above, but only one language." |
15126 | 22 @echo "xmllint : Check syntax of all xml files." |
15135 | 23 @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
|
24 @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
|
25 @echo "clean-html-chunked: Purge the 'HTML' directory." |
11206
e7534574320c
html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents:
11200
diff
changeset
|
26 @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
|
27 @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
|
28 @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
|
29 @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
|
30 @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
|
31 @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
|
32 @echo "Substitute LANG for one of $(SUBDIRS)" |
9674 | 33 |
11883
51e14a023339
Structure rewritten, to allow single language build and some simplifications.
wight
parents:
11841
diff
changeset
|
34 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
|
35 chunked-dir: |
20366 | 36 -mkdir -p $(HTML_CHUNKED) |
9674 | 37 |
11883
51e14a023339
Structure rewritten, to allow single language build and some simplifications.
wight
parents:
11841
diff
changeset
|
38 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
|
39 single-dir: |
20366 | 40 -mkdir -p $(HTML_SINGLE) |
11188
6dfed0b2a300
Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents:
11130
diff
changeset
|
41 |
15126 | 42 xmllint: xmllint.sh $(addprefix xmllint-,$(SUBDIRS)) |
43 | |
11200
eae346fd3769
Big consistency overhaul, targets and variables renamed to *-single and
diego
parents:
11188
diff
changeset
|
44 clean-html-chunked: |
11841 | 45 -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
|
46 |
11200
eae346fd3769
Big consistency overhaul, targets and variables renamed to *-single and
diego
parents:
11188
diff
changeset
|
47 clean-html-single: |
11841 | 48 -rm -rf $(HTML_SINGLE) |
9674 | 49 |
15171
c047b2d7f7ce
releaseclean should now work as expected, crate of Coke going in my direction.
diego
parents:
15135
diff
changeset
|
50 releaseclean: $(addprefix releaseclean-,$(SUBDIRS)) |
11841 | 51 -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
|
52 |
15101
04a5b6407cb6
Add releaseclean target to remove generated files but keep the HTML.
diego
parents:
14393
diff
changeset
|
53 distclean: clean releaseclean |
04a5b6407cb6
Add releaseclean target to remove generated files but keep the HTML.
diego
parents:
14393
diff
changeset
|
54 |
11326 | 55 xsltproc.sh xmllint.sh: |
11841 | 56 sh configure |
11063 | 57 |
11200
eae346fd3769
Big consistency overhaul, targets and variables renamed to *-single and
diego
parents:
11188
diff
changeset
|
58 clean: clean-html-chunked clean-html-single |
11883
51e14a023339
Structure rewritten, to allow single language build and some simplifications.
wight
parents:
11841
diff
changeset
|
59 |
51e14a023339
Structure rewritten, to allow single language build and some simplifications.
wight
parents:
11841
diff
changeset
|
60 define lang-def |
51e14a023339
Structure rewritten, to allow single language build and some simplifications.
wight
parents:
11841
diff
changeset
|
61 html-chunked-$(1): xsltproc.sh xmllint.sh chunked-dir |
20366 | 62 -(mkdir -p $(HTML_CHUNKED)/$(1)) |
11883
51e14a023339
Structure rewritten, to allow single language build and some simplifications.
wight
parents:
11841
diff
changeset
|
63 $(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
|
64 |
51e14a023339
Structure rewritten, to allow single language build and some simplifications.
wight
parents:
11841
diff
changeset
|
65 html-single-$(1): xsltproc.sh xmllint.sh single-dir |
20366 | 66 -(mkdir -p $(HTML_SINGLE)/$(1)) |
11883
51e14a023339
Structure rewritten, to allow single language build and some simplifications.
wight
parents:
11841
diff
changeset
|
67 $(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
|
68 |
15126 | 69 xmllint-$(1): xmllint.sh |
70 $(MAKE) HTMLFILE=../$(HTML_SINGLE)/$(1)/MPlayer.html -C $(1) xmllint | |
71 | |
15171
c047b2d7f7ce
releaseclean should now work as expected, crate of Coke going in my direction.
diego
parents:
15135
diff
changeset
|
72 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
|
73 |
c047b2d7f7ce
releaseclean should now work as expected, crate of Coke going in my direction.
diego
parents:
15135
diff
changeset
|
74 clean-$(1): |
11883
51e14a023339
Structure rewritten, to allow single language build and some simplifications.
wight
parents:
11841
diff
changeset
|
75 -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
|
76 |
c047b2d7f7ce
releaseclean should now work as expected, crate of Coke going in my direction.
diego
parents:
15135
diff
changeset
|
77 releaseclean-$(1): |
11883
51e14a023339
Structure rewritten, to allow single language build and some simplifications.
wight
parents:
11841
diff
changeset
|
78 $(MAKE) HTMLDIR=../$(HTML_CHUNKED)/$(1) -C $(1) distclean |
51e14a023339
Structure rewritten, to allow single language build and some simplifications.
wight
parents:
11841
diff
changeset
|
79 endef |
51e14a023339
Structure rewritten, to allow single language build and some simplifications.
wight
parents:
11841
diff
changeset
|
80 |
51e14a023339
Structure rewritten, to allow single language build and some simplifications.
wight
parents:
11841
diff
changeset
|
81 $(foreach lang, $(SUBDIRS),$(eval $(call lang-def,$(lang)))) |
22467 | 82 |
83 .PHONY: all help html-chunked* chunked-dir html-single* single-dir xmllint* | |
84 .PHONY: clean-html-chunked clean-html-single releaseclean* distclean* clean* |