Mercurial > mplayer.hg
annotate DOCS/xml/Makefile.inc @ 10376:00ec6b7f5b1a
typo
author | nicolas |
---|---|
date | Sat, 05 Jul 2003 09:50:21 +0000 |
parents | 3c0e1b182fbc |
children | f6268d5a10f4 |
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 | |
10309
3c0e1b182fbc
XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents:
10025
diff
changeset
|
5 # Use customized html.xsl file if it exists... |
9674 | 6 ifeq (html.xsl,$(wildcard html.xsl)) |
7 HTML_XSL := html.xsl | |
8 XSL_DEPS := $(HTML_XSL) ../html.xsl ../html-common.xsl | |
9 else | |
10 HTML_XSL := ../html.xsl | |
11 XSL_DEPS := $(HTML_XSL) ../html-common.xsl | |
12 endif | |
13 | |
10309
3c0e1b182fbc
XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents:
10025
diff
changeset
|
14 # Fall back to the default HTML stylesheet if none is specified. |
9674 | 15 HTML_STYLESHEET ?= ../default.css |
16 | |
17 # This is the main target... | |
18 $(HTMLDIR)/index.html: documentation.xml $(XSL_DEPS) | |
19 -rm -f $(HTMLDIR)/* | |
10309
3c0e1b182fbc
XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents:
10025
diff
changeset
|
20 ../xmllint.sh $< |
10025 | 21 cp $(HTML_STYLESHEET) $(HTMLDIR)/ |
10309
3c0e1b182fbc
XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents:
10025
diff
changeset
|
22 ../xsltproc.sh $(HTMLDIR)/ $(HTML_XSL) $< |
9674 | 23 |
24 ../html.xsl: | |
10309
3c0e1b182fbc
XML autoconfiguration by Dmitry Baryshkov <lumag@qnc.ru> with some
diego
parents:
10025
diff
changeset
|
25 cd .. && sh configure |