aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2014-03-25 08:42:08 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2014-03-25 08:42:08 +0000
commitac8ce80c68fe09a83903669164c387962b2070a0 (patch)
tree857cbfd1f012ad9c2e2ae2caf01e0e80888461dd
parent599c1e8ce3e49e93928e1011bc80a8853d8582b3 (diff)
use pdflatex for building PDFs
svn path=/trunk/; revision=17279
-rw-r--r--doc/tutorials/externals-howto/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/tutorials/externals-howto/Makefile b/doc/tutorials/externals-howto/Makefile
index f9840099..6df93cf7 100644
--- a/doc/tutorials/externals-howto/Makefile
+++ b/doc/tutorials/externals-howto/Makefile
@@ -8,7 +8,7 @@ HTMLDIR_DE=HOWTO-de
LATEX=latex
DVIPS=dvips
-DVIPDF=dvipdf
+PDFLATEX=pdflatex
LATEX2HTML=latex2html
default: en_pdf
@@ -43,7 +43,7 @@ pdf: en_pdf de_pdf
html: en_html de_html
clean:
- -rm -f *.aux *.log *.toc *.dvi *~
+ -rm -f *.aux *.log *.toc *.out *.dvi *~
cleaner: clean
-rm -f *.ps *.pdf
@@ -61,8 +61,9 @@ distclean: cleaner
$(DVIPS) $*.dvi
-%.pdf: %.dvi
- $(DVIPDF) $*.dvi
+%.pdf:
+ $(PDFLATEX) $*.tex
+ $(PDFLATEX) $*.tex
examples: $(HOWTO_EXAMPLES)
echo made examples