From 97fad3725b1024d35b720f4e0aba876071dbc002 Mon Sep 17 00:00:00 2001 From: diego Date: Tue, 21 Oct 2003 11:07:02 +0000 Subject: html.xsl ---> html-single.xsl + more consistency + small fixes git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11207 b3059339-0415-0410-9bf9-f77b7e298cf2 --- DOCS/xml/Makefile.inc | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'DOCS/xml/Makefile.inc') diff --git a/DOCS/xml/Makefile.inc b/DOCS/xml/Makefile.inc index c4de7b002f..c451fb1d47 100644 --- a/DOCS/xml/Makefile.inc +++ b/DOCS/xml/Makefile.inc @@ -2,20 +2,8 @@ # Makefile.inc for Makefiles in subdirectories. # -# Use customized html.xsl and/or html-chunk.xsl file if they exist... +# Use customized html-chunk.xsl and/or html-single.xsl file if they exist... # Also add html-common.xsl to depends if it exists. -ifeq (html.xsl,$(wildcard html.xsl)) -HTML_XSL := html.xsl -ifeq (html-common.xsl,$(wildcard html-common.xsl)) -XSL_DEPS := $(HTML_XSL) html-common.xsl ../html.xsl ../html-common.xsl -else -XSL_DEPS := $(HTML_XSL) html-common.xsl ../html.xsl ../html-common.xsl -endif -else -HTML_XSL := ../html.xsl -XSL_DEPS := $(HTML_XSL) ../html-common.xsl -endif - ifeq (html-chunk.xsl,$(wildcard html-chunk.xsl)) HTML_CHUNK_XSL := html-chunk.xsl ifeq (html-common.xsl,$(wildcard html-common.xsl)) @@ -28,13 +16,25 @@ HTML_CHUNK_XSL := ../html-chunk.xsl CHUNK_XSL_DEPS := $(HTML_CHUNK_XSL) ../html-common.xsl endif +ifeq (html-single.xsl,$(wildcard html-single.xsl)) +HTML_SINGLE_XSL := html-single.xsl +ifeq (html-common.xsl,$(wildcard html-common.xsl)) +XSL_DEPS := $(HTML_SINGLE_XSL) html-common.xsl ../html-single.xsl ../html-common.xsl +else +XSL_DEPS := $(HTML_SINGLE_XSL) html-common.xsl ../html-single.xsl ../html-common.xsl +endif +else +HTML_SINGLE_XSL := ../html-single.xsl +XSL_DEPS := $(HTML_SINGLE_XSL) ../html-common.xsl +endif + # Fall back to the default HTML stylesheet if none is specified. HTML_STYLESHEET ?= ../default.css # This is the main target... -all: html html-chunked -html: $(HTMLFILE) +all: html-chunked html-single html-chunked: $(HTMLDIR)/index.html +html-single: $(HTMLFILE) $(HTMLDIR)/index.html: documentation.xml $(CHUNK_XSL_DEPS) @if test "$(HTMLDIR)" = "" ; then echo "Error: HTMLDIR not set!!!"; echo "Typically this means, that you've run make from subdir of DOCS/xml. Don't do this!" ; false; fi @@ -50,9 +50,9 @@ $(HTMLFILE): documentation.xml $(XSL_DEPS) -rm -f $(HTMLFILE) ../xmllint.sh $< cp -f $(HTML_STYLESHEET) `dirname $(HTMLFILE)` - ../xsltproc.sh $(HTMLFILE) $(HTML_XSL) $< + ../xsltproc.sh $(HTMLFILE) $(HTML_SINGLE_XSL) $< -../html.xsl: +../html-single.xsl: cd .. && sh configure distclean: -- cgit v1.2.3