annotate DOCS/xml/Makefile.inc @ 29966:a08a776121b8

Simplify setting COMMON_XSL_DEPS variable: Use $(wildcard ) directly instead of using it to control a conditional.
author diego
date Sun, 13 Dec 2009 23:17:11 +0000
parents c84e248bd7e3
children cb44dec7706e
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 #
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
461f71ba8af4 XML version of MPlayer's doc
nicolas
parents:
diff changeset
3 #
461f71ba8af4 XML version of MPlayer's doc
nicolas
parents:
diff changeset
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.
29966
a08a776121b8 Simplify setting COMMON_XSL_DEPS variable:
diego
parents: 29959
diff changeset
7 COMMON_XSL_DEPS := ../html-common.xsl $(wildcard html-common.xsl)
11887
b09020364bfb Simplifications and bug fixes by Torinthiel.
diego
parents: 11841
diff changeset
8
11188
6dfed0b2a300 Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents: 11045
diff changeset
9 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
10 HTML_CHUNK_XSL := html-chunk.xsl
11887
b09020364bfb Simplifications and bug fixes by Torinthiel.
diego
parents: 11841
diff changeset
11 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
12 else
6dfed0b2a300 Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents: 11045
diff changeset
13 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
14 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
15 endif
6dfed0b2a300 Add support for building all-in-one HTML docs. (Files go to DOCS/HTML-single)
lumag
parents: 11045
diff changeset
16
11206
e7534574320c html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents: 11188
diff changeset
17 ifeq (html-single.xsl,$(wildcard html-single.xsl))
e7534574320c html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents: 11188
diff changeset
18 HTML_SINGLE_XSL := html-single.xsl
11887
b09020364bfb Simplifications and bug fixes by Torinthiel.
diego
parents: 11841
diff changeset
19 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
20 else
e7534574320c html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents: 11188
diff changeset
21 HTML_SINGLE_XSL := ../html-single.xsl
e7534574320c html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents: 11188
diff changeset
22 XSL_DEPS := $(HTML_SINGLE_XSL) ../html-common.xsl
e7534574320c html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents: 11188
diff changeset
23 endif
e7534574320c html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents: 11188
diff changeset
24
10309
3c0e1b182fbc XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents: 10025
diff changeset
25 # Fall back to the default HTML stylesheet if none is specified.
9674
461f71ba8af4 XML version of MPlayer's doc
nicolas
parents:
diff changeset
26 HTML_STYLESHEET ?= ../default.css
461f71ba8af4 XML version of MPlayer's doc
nicolas
parents:
diff changeset
27
461f71ba8af4 XML version of MPlayer's doc
nicolas
parents:
diff changeset
28 # This is the main target...
11206
e7534574320c html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents: 11188
diff changeset
29 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
30 html-chunked: $(HTMLDIR)/index.html
11206
e7534574320c html.xsl ---> html-single.xsl + more consistency + small fixes
diego
parents: 11188
diff changeset
31 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
32
12969
e589db41eb34 Make symlinks behavior more sensible - regenerate symlinks (and documentation)
wight
parents: 11893
diff changeset
33 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
34
15126
6555c01128b7 Support syntax checking only
wight
parents: 12969
diff changeset
35 xmllint: main.xml $(SYMLINKS_DEPS)
6555c01128b7 Support syntax checking only
wight
parents: 12969
diff changeset
36 ../xmllint.sh $<
6555c01128b7 Support syntax checking only
wight
parents: 12969
diff changeset
37
29951
0816de0f6db1 Declare a dependency on xmllint instead of duplicating the target's commands.
diego
parents: 28221
diff changeset
38 $(HTMLDIR)/index.html: main.xml $(CHUNK_XSL_DEPS) $(SYMLINKS_DEPS) xmllint
29959
c84e248bd7e3 cosmetics: Remove pointless trailing /.
diego
parents: 29956
diff changeset
39 cp -f $(HTML_STYLESHEET) $(HTMLDIR)
11841
67550c3b21a5 Make the build system print everything it does.
diego
parents: 11817
diff changeset
40 ../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
41
29951
0816de0f6db1 Declare a dependency on xmllint instead of duplicating the target's commands.
diego
parents: 28221
diff changeset
42 $(HTMLFILE): main.xml $(XSL_DEPS) $(SYMLINKS_DEPS) xmllint
29954
740cba0e78ae Replace shell command substitution by Makefile syntax construct.
diego
parents: 29953
diff changeset
43 cp -f $(HTML_STYLESHEET) $(@D)
29953
ff601a46cbaf Use automatic variables instead of the target name.
diego
parents: 29952
diff changeset
44 ../xsltproc.sh $@ $(HTML_SINGLE_XSL) $<
9674
461f71ba8af4 XML version of MPlayer's doc
nicolas
parents:
diff changeset
45
11817
19919e913e3d Shiny new build system by Torinthiel, polished and improved by myself.
diego
parents: 11525
diff changeset
46 ../html-chunk.xsl ../html-single.xsl main.xml:
11326
23192e33fad5 Dependencies for autogenerated files added.
diego
parents: 11310
diff changeset
47 cd .. && sh configure
11045
4dc3149f5b74 Support for building incomplete translations.
diego
parents: 10914
diff changeset
48
12969
e589db41eb34 Make symlinks behavior more sensible - regenerate symlinks (and documentation)
wight
parents: 11893
diff changeset
49 $(filter-out main.xml, $(patsubst ../en/%,%, $(wildcard ../en/*.xml))):
e589db41eb34 Make symlinks behavior more sensible - regenerate symlinks (and documentation)
wight
parents: 11893
diff changeset
50 $(if $(findstring yes,$(USE_SYMLINKS)), ,exit 0;)\
11893
cf34e63146bf Move symlinks to a separate target
wight
parents: 11887
diff changeset
51 for file in ../en/*.xml ; do \
cf34e63146bf Move symlinks to a separate target
wight
parents: 11887
diff changeset
52 if ! test -r `basename $$file` ; then \
cf34e63146bf Move symlinks to a separate target
wight
parents: 11887
diff changeset
53 ln -s $$file `basename $$file` ; \
cf34e63146bf Move symlinks to a separate target
wight
parents: 11887
diff changeset
54 fi; \
cf34e63146bf Move symlinks to a separate target
wight
parents: 11887
diff changeset
55 done
cf34e63146bf Move symlinks to a separate target
wight
parents: 11887
diff changeset
56
28221
ded986da716f nonrecursive releaseclean target
diego
parents: 26460
diff changeset
57 .PHONY: all html-chunked html-single xmllint