Mercurial > mplayer.hg
annotate DOCS/xml/Makefile.inc @ 27851:dc0d56d55a71
44% synced with r22753 (going on... ;))
author | ptt |
---|---|
date | Mon, 03 Nov 2008 10:35:54 +0000 |
parents | 2ec14bc3a3b3 |
children | ded986da716f |
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 | |
11206
e7534574320c
html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents:
11188
diff
changeset
|
5 # Use customized html-chunk.xsl and/or html-single.xsl file if they exist... |
11188
6dfed0b2a300
Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents:
11045
diff
changeset
|
6 # Also add html-common.xsl to depends if it exists. |
11887 | 7 ifeq (html-common.xsl,$(wildcard html-common.xsl)) |
8 COMMON_XSL_DEPS := html-common.xsl ../html-common.xsl | |
9 else | |
10 COMMON_XSL_DEPS := ../html-common.xsl | |
11 endif | |
12 | |
11188
6dfed0b2a300
Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents:
11045
diff
changeset
|
13 ifeq (html-chunk.xsl,$(wildcard html-chunk.xsl)) |
6dfed0b2a300
Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents:
11045
diff
changeset
|
14 HTML_CHUNK_XSL := html-chunk.xsl |
11887 | 15 CHUNK_XSL_DEPS := $(HTML_CHUNK_XSL) ../html-chunk.xsl $(COMMON_XSL_DEPS) |
11188
6dfed0b2a300
Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents:
11045
diff
changeset
|
16 else |
6dfed0b2a300
Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents:
11045
diff
changeset
|
17 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
|
18 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
|
19 endif |
6dfed0b2a300
Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents:
11045
diff
changeset
|
20 |
11206
e7534574320c
html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents:
11188
diff
changeset
|
21 ifeq (html-single.xsl,$(wildcard html-single.xsl)) |
e7534574320c
html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents:
11188
diff
changeset
|
22 HTML_SINGLE_XSL := html-single.xsl |
11887 | 23 XSL_DEPS := $(HTML_SINGLE_XSL) ../html-single.xsl $(COMMON_XSL_DEPS) |
11206
e7534574320c
html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents:
11188
diff
changeset
|
24 else |
e7534574320c
html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents:
11188
diff
changeset
|
25 HTML_SINGLE_XSL := ../html-single.xsl |
e7534574320c
html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents:
11188
diff
changeset
|
26 XSL_DEPS := $(HTML_SINGLE_XSL) ../html-common.xsl |
e7534574320c
html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents:
11188
diff
changeset
|
27 endif |
e7534574320c
html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents:
11188
diff
changeset
|
28 |
10309
3c0e1b182fbc
XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents:
10025
diff
changeset
|
29 # Fall back to the default HTML stylesheet if none is specified. |
9674 | 30 HTML_STYLESHEET ?= ../default.css |
31 | |
32 # This is the main target... | |
11206
e7534574320c
html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents:
11188
diff
changeset
|
33 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
|
34 html-chunked: $(HTMLDIR)/index.html |
11206
e7534574320c
html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents:
11188
diff
changeset
|
35 html-single: $(HTMLFILE) |
11188
6dfed0b2a300
Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents:
11045
diff
changeset
|
36 |
12969
e589db41eb34
Make symlinks behavior more sensible - regenerate symlinks (and documentation)
wight
parents:
11893
diff
changeset
|
37 SYMLINKS_DEPS:=$(if $(findstring yes,$(USE_SYMLINKS)), $(patsubst ../en/%,%,$(wildcard ../en/*.xml))) |
e589db41eb34
Make symlinks behavior more sensible - regenerate symlinks (and documentation)
wight
parents:
11893
diff
changeset
|
38 |
15126 | 39 xmllint: main.xml $(SYMLINKS_DEPS) |
40 ../xmllint.sh $< | |
41 | |
12969
e589db41eb34
Make symlinks behavior more sensible - regenerate symlinks (and documentation)
wight
parents:
11893
diff
changeset
|
42 $(HTMLDIR)/index.html: main.xml $(CHUNK_XSL_DEPS) $(SYMLINKS_DEPS) |
11887 | 43 ifndef HTMLDIR |
44 $(warning $(HTMLDIR)) | |
45 $(warning Error: HTMLDIR not set!!!) | |
46 $(warning Typically this means, that you've run make from a subdir of DOCS/xml.) | |
47 $(error Don't do this!) | |
48 endif | |
11841 | 49 -rm -f $(HTMLDIR)/* |
50 ../xmllint.sh $< | |
51 cp -f $(HTML_STYLESHEET) $(HTMLDIR)/ | |
52 ../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
|
53 |
12969
e589db41eb34
Make symlinks behavior more sensible - regenerate symlinks (and documentation)
wight
parents:
11893
diff
changeset
|
54 $(HTMLFILE): main.xml $(XSL_DEPS) $(SYMLINKS_DEPS) |
11887 | 55 ifndef HTMLFILE |
56 $(warning Error: HTMLFILE not set!!!) | |
57 $(warning Typically this means, that you've run make from a subdir of DOCS/xml.) | |
58 $(error Don't do this!) | |
59 endif | |
11841 | 60 -rm -f $(HTMLFILE) |
61 ../xmllint.sh $< | |
62 cp -f $(HTML_STYLESHEET) `dirname $(HTMLFILE)` | |
63 ../xsltproc.sh $(HTMLFILE) $(HTML_SINGLE_XSL) $< | |
9674 | 64 |
11817
19919e913e3d
Shiny new build system by Torinthiel, polished and improved by myself.
diego
parents:
11525
diff
changeset
|
65 ../html-chunk.xsl ../html-single.xsl main.xml: |
11326 | 66 cd .. && sh configure |
11045 | 67 |
12969
e589db41eb34
Make symlinks behavior more sensible - regenerate symlinks (and documentation)
wight
parents:
11893
diff
changeset
|
68 $(filter-out main.xml, $(patsubst ../en/%,%, $(wildcard ../en/*.xml))): |
e589db41eb34
Make symlinks behavior more sensible - regenerate symlinks (and documentation)
wight
parents:
11893
diff
changeset
|
69 $(if $(findstring yes,$(USE_SYMLINKS)), ,exit 0;)\ |
11893 | 70 for file in ../en/*.xml ; do \ |
71 if ! test -r `basename $$file` ; then \ | |
72 ln -s $$file `basename $$file` ; \ | |
73 fi; \ | |
74 done | |
75 | |
11045 | 76 distclean: |
11841 | 77 rm -f main.xml |
18125 | 78 rm -f `find *.xml -type l`; |
26460
2ec14bc3a3b3
Move phony target declaration to the bottom of the file; add distclean target.
diego
parents:
18125
diff
changeset
|
79 |
2ec14bc3a3b3
Move phony target declaration to the bottom of the file; add distclean target.
diego
parents:
18125
diff
changeset
|
80 .PHONY: all html-chunked html-single xmllint distclean |