diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-09-05 12:36:21 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:01 -0500 |
commit | 5f302fc9cd5c871e26def230a8456f17c104baf9 (patch) | |
tree | cdfb2f3db69c3251977c96bd1eecba7f29a8c627 /docs/Makefile.in | |
parent | 2837fef478112b527fc85776e67baca55e7bce0f (diff) | |
download | samba-5f302fc9cd5c871e26def230a8456f17c104baf9.tar.gz samba-5f302fc9cd5c871e26def230a8456f17c104baf9.tar.bz2 samba-5f302fc9cd5c871e26def230a8456f17c104baf9.zip |
Use dia to generate png images out of dia files
(This used to be commit a46ab88b4481d63173f67ad85eb93ce281277562)
Diffstat (limited to 'docs/Makefile.in')
-rw-r--r-- | docs/Makefile.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/Makefile.in b/docs/Makefile.in index 71b88e01e2..ad46ad2f57 100644 --- a/docs/Makefile.in +++ b/docs/Makefile.in @@ -12,6 +12,7 @@ DVIPS = @DVIPS@ PNGTOPNM = @PNGTOPNM@ EPSTOPNM = @EPSTOPNM@ PNMTOPNG = @PNMTOPNG@ +DIA = @DIA@ PNMTOPS = @PNMTOPS@ HTML2TEXT = @HTML2TEXT@ PLUCKERBUILD = @PLUCKERBUILD@ @@ -166,6 +167,7 @@ $(PDFDIR)/%.pdf: %.pdf # Adobe PDF files %.pdf: %.tex %.ind latexfigures + $(MAKE) $(shell $(XSLTPROC) --stringparam prepend "" --stringparam append ".png" --stringparam role latex xslt/find-image-dependencies.xsl $(DOCBOOKDIR)/$*.xml) -$(PDFLATEX) $< $(THUMBPDF) $*.pdf -$(PDFLATEX) $< @@ -178,9 +180,9 @@ $(DVIDIR)/%.dvi: %.dvi %.dvi: %.tex %.idx $(MAKE) $(shell $(XSLTPROC) --stringparam prepend "" --stringparam append ".eps" --stringparam role latex xslt/find-image-dependencies.xsl $(DOCBOOKDIR)/$*.xml) -$(LATEX) $< - -$(LATEX) $< - $(MAKEINDEX) $*.idx - -$(LATEX) $< + +%.png: %.dia + $(DIA) -e $@ $< %.eps: %.png $(PNGTOPNM) $< | $(PNMTOPS) > $@ |