comparison DOCS/xml/Makefile.inc @ 29979:4d2792f3a070

cosmetics: Rename XSL_DEPS variable to SINGLE_XSL_DEPS for consistency.
author diego
date Mon, 14 Dec 2009 02:25:40 +0000
parents 253fb126c4ee
children 542d8831b5df
comparison
equal deleted inserted replaced
29978:253fb126c4ee 29979:4d2792f3a070
4 4
5 HTML_CHUNK_XSL := ../html-chunk.xsl 5 HTML_CHUNK_XSL := ../html-chunk.xsl
6 CHUNK_XSL_DEPS := $(HTML_CHUNK_XSL) ../html-common.xsl 6 CHUNK_XSL_DEPS := $(HTML_CHUNK_XSL) ../html-common.xsl
7 7
8 HTML_SINGLE_XSL := ../html-single.xsl 8 HTML_SINGLE_XSL := ../html-single.xsl
9 XSL_DEPS := $(HTML_SINGLE_XSL) ../html-common.xsl 9 SINGLE_XSL_DEPS := $(HTML_SINGLE_XSL) ../html-common.xsl
10 10
11 # This is the main target... 11 # This is the main target...
12 all: html-chunked html-single 12 all: html-chunked html-single
13 html-chunked: $(HTMLDIR)/index.html 13 html-chunked: $(HTMLDIR)/index.html
14 html-single: $(HTMLDIR)/MPlayer.html 14 html-single: $(HTMLDIR)/MPlayer.html
22 cp -f ../default.css $(@D) 22 cp -f ../default.css $(@D)
23 23
24 $(HTMLDIR)/index.html: main.xml $(CHUNK_XSL_DEPS) $(SYMLINKS_DEPS) xmllint $(HTMLDIR)/default.css 24 $(HTMLDIR)/index.html: main.xml $(CHUNK_XSL_DEPS) $(SYMLINKS_DEPS) xmllint $(HTMLDIR)/default.css
25 ../xsltproc.sh $(HTMLDIR)/ $(HTML_CHUNK_XSL) $< 25 ../xsltproc.sh $(HTMLDIR)/ $(HTML_CHUNK_XSL) $<
26 26
27 $(HTMLDIR)/MPlayer.html: main.xml $(XSL_DEPS) $(SYMLINKS_DEPS) xmllint $(HTMLDIR)/default.css 27 $(HTMLDIR)/MPlayer.html: main.xml $(SINGLE_XSL_DEPS) $(SYMLINKS_DEPS) xmllint $(HTMLDIR)/default.css
28 ../xsltproc.sh $@ $(HTML_SINGLE_XSL) $< 28 ../xsltproc.sh $@ $(HTML_SINGLE_XSL) $<
29 29
30 ../html-chunk.xsl ../html-single.xsl main.xml: 30 ../html-chunk.xsl ../html-single.xsl main.xml:
31 cd .. && sh configure 31 cd .. && sh configure
32 32