Mercurial > mplayer.hg
annotate DOCS/xml/Makefile.inc @ 31092:91db38be8309
yuv=5 supports brightness and contrast adjustment.
author | reimar |
---|---|
date | Sun, 09 May 2010 21:25:38 +0000 |
parents | 783f8faee539 |
children | 7a2ec1d564ce |
rev | line source |
---|---|
9674 | 1 # |
10309
3c0e1b182fbc
XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents:
10025
diff
changeset
|
2 # Makefile.inc for Makefiles in subdirectories. |
9674 | 3 # |
4 | |
11188
6dfed0b2a300
Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents:
11045
diff
changeset
|
5 HTML_CHUNK_XSL := ../html-chunk.xsl |
6dfed0b2a300
Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents:
11045
diff
changeset
|
6 CHUNK_XSL_DEPS := $(HTML_CHUNK_XSL) ../html-common.xsl |
6dfed0b2a300
Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents:
11045
diff
changeset
|
7 |
11206
e7534574320c
html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents:
11188
diff
changeset
|
8 HTML_SINGLE_XSL := ../html-single.xsl |
29979
4d2792f3a070
cosmetics: Rename XSL_DEPS variable to SINGLE_XSL_DEPS for consistency.
diego
parents:
29978
diff
changeset
|
9 SINGLE_XSL_DEPS := $(HTML_SINGLE_XSL) ../html-common.xsl |
11206
e7534574320c
html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents:
11188
diff
changeset
|
10 |
9674 | 11 # This is the main target... |
11206
e7534574320c
html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents:
11188
diff
changeset
|
12 all: html-chunked html-single |
11188
6dfed0b2a300
Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents:
11045
diff
changeset
|
13 html-chunked: $(HTMLDIR)/index.html |
29972
03e8eec6e104
Construct monolithic targets with the HTMLDIR instead of the HTMLFILE variable.
diego
parents:
29967
diff
changeset
|
14 html-single: $(HTMLDIR)/MPlayer.html |
11188
6dfed0b2a300
Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents:
11045
diff
changeset
|
15 |
31076
783f8faee539
Put symlinks under revision control instead of generating them during make.
diego
parents:
29998
diff
changeset
|
16 xmllint: main.xml |
15126 | 17 ../xmllint.sh $< |
18 | |
29973
113ab3d1feab
Factorize stylesheet installation into its own target.
diego
parents:
29972
diff
changeset
|
19 $(HTMLDIR)/default.css: |
29976 | 20 cp -f ../default.css $(@D) |
29973
113ab3d1feab
Factorize stylesheet installation into its own target.
diego
parents:
29972
diff
changeset
|
21 |
31076
783f8faee539
Put symlinks under revision control instead of generating them during make.
diego
parents:
29998
diff
changeset
|
22 $(HTMLDIR)/index.html: main.xml $(CHUNK_XSL_DEPS) xmllint $(HTMLDIR)/default.css |
11841 | 23 ../xsltproc.sh $(HTMLDIR)/ $(HTML_CHUNK_XSL) $< |
11188
6dfed0b2a300
Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents:
11045
diff
changeset
|
24 |
31076
783f8faee539
Put symlinks under revision control instead of generating them during make.
diego
parents:
29998
diff
changeset
|
25 $(HTMLDIR)/MPlayer.html: main.xml $(SINGLE_XSL_DEPS) xmllint $(HTMLDIR)/default.css |
29953
ff601a46cbaf
Use automatic variables instead of the target name.
diego
parents:
29952
diff
changeset
|
26 ../xsltproc.sh $@ $(HTML_SINGLE_XSL) $< |
9674 | 27 |
11817
19919e913e3d
Shiny new build system by Torinthiel, polished and improved by myself.
diego
parents:
11525
diff
changeset
|
28 ../html-chunk.xsl ../html-single.xsl main.xml: |
11326 | 29 cd .. && sh configure |
11045 | 30 |
28221 | 31 .PHONY: all html-chunked html-single xmllint |