diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-05-01 21:09:13 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-05-01 22:49:13 +0200 |
commit | df74a0eb78181eba58241a3ff80affe8b8270266 (patch) | |
tree | 94a684108ae17710095a3789560f9cba0beab47c /docs-xml/Makefile | |
parent | 25181744c65b9049630447286a5c060c72681597 (diff) | |
download | samba-df74a0eb78181eba58241a3ff80affe8b8270266.tar.gz |
Remove broken XSL-FO translation code; this has been broken for a while
and the output was never used.
Diffstat (limited to 'docs-xml/Makefile')
-rw-r--r-- | docs-xml/Makefile | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/docs-xml/Makefile b/docs-xml/Makefile index 486a11190c2..68890306ed6 100644 --- a/docs-xml/Makefile +++ b/docs-xml/Makefile @@ -33,7 +33,7 @@ help: @echo " release - Build the docs needed for a Samba release" @echo " all - Build all docs that can be build using the utilities found by configure" @echo " everything - Build all of the above" - @echo " pdf,tex,ps,manpages3,txt,pearson,fo,htmlhelp - Build specific output format" + @echo " pdf,tex,ps,manpages3,txt,pearson,htmlhelp - Build specific output format" @echo " html - Build multi-file HTML versions" @echo " html-single - Build single-file HTML versions" @echo " htmlman3 - Build HTML version of manpages" @@ -70,8 +70,6 @@ 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)) -fo:: $(patsubst %,$(FODIR)/%.fo,$(MAIN_DOCS)) -fo-pdf:: $(patsubst %,$(FOPDFDIR)/%.pdf,$(MAIN_DOCS)) tex:: $(addsuffix .tex,$(MAIN_DOCS)) texi:: $(patsubst %,$(TEXINFODIR)/%.texi,$(MAIN_DOCS)) texiinfo:: $(patsubst %,$(TEXINFODIR)/%.info,$(MAIN_DOCS)) @@ -198,16 +196,6 @@ $(PSDIR)/%.ps: %/index.xml $(PSDIR) xslt/latex.xsl %-images-latex-eps %.eps: %.png $(PNGTOPNM) $< | $(PNMTOPS) > $@ -# Fo -$(FODIR)/%.fo: $(DOCBOOKDIR)/%.xml - @mkdir -p $(@D) - $(XSLTPROC) --output $@ xslt/fo.xsl $< - -# PDF thru Fo -$(FOPDFDIR)/%.pdf: $(FODIR)/%.fo - @mkdir -p $(@D) - JAVA_OPTS=-Xmx250m $(FOP) -q -d $< -pdf $@ - $(HTMLHELPDIR)/%: $(DOCBOOKDIR)/%.xml %-images-htmlhelp $(XSLTPROC) --stringparam htmlhelp.chm $*.chm \ --stringparam manifest.in.base.dir "$@/" \ |