1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

Remove text chunks support. Was never built by any of the main targets,

and one of the reasons the complex dependency system exists.
This commit is contained in:
Jelmer Vernooij 2009-05-01 23:10:59 +02:00
parent 6ca4d727c4
commit 86a968b098
2 changed files with 0 additions and 20 deletions

View File

@ -69,7 +69,6 @@ clean::
pdf:: $(patsubst %,$(PDFDIR)/%.pdf,$(MAIN_DOCS))
ps:: $(patsubst %,$(PSDIR)/%.ps,$(MAIN_DOCS))
txt:: $(patsubst %,$(TXTDIR)/%.txt,$(MAIN_DOCS))
txt-chunks:: $(addsuffix -txt-chunks,$(MAIN_DOCS))
tex:: $(addsuffix .tex,$(MAIN_DOCS))
texi:: $(patsubst %,$(TEXINFODIR)/%.texi,$(MAIN_DOCS))
texiinfo:: $(patsubst %,$(TEXINFODIR)/%.info,$(MAIN_DOCS))

View File

@ -5,7 +5,6 @@
- $(FNAME)-images-latex-{png,eps,pdf} for role=latex
- $(FNAME)-images-role for all other roles
- $(TXTDIR)/$(FNAME)-text
(C) Jelmer Vernooij 2004-2005
@ -23,7 +22,6 @@
<xsl:call-template name="generate-images">
<xsl:with-param name="role"/>
</xsl:call-template>
<xsl:call-template name="generate-txt-chunks"/>
</xsl:template>
<xsl:template name="generate-images">
@ -35,21 +33,4 @@
</xsl:for-each>
<xsl:text>&#10;</xsl:text>
</xsl:template>
<xsl:template name="generate-txt-chunks">
<xsl:value-of select="$target"/><xsl:text>-txt-chunks: </xsl:text>
<xsl:for-each select="(//chapter|//preface|//appendix)[@id]|book">
<xsl:value-of select="$txtbasedir"/>
<xsl:choose>
<xsl:when test="name() = 'book'">
<xsl:text>index</xsl:text>
</xsl:when>
<xsl:when test="@id != ''">
<xsl:value-of select="@id"/>
</xsl:when>
</xsl:choose>
<xsl:text>.txt </xsl:text>
</xsl:for-each>
<xsl:text>&#10;</xsl:text>
</xsl:template>
</xsl:stylesheet>