From ac8ce80c68fe09a83903669164c387962b2070a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 25 Mar 2014 08:42:08 +0000 Subject: use pdflatex for building PDFs svn path=/trunk/; revision=17279 --- doc/tutorials/externals-howto/Makefile | 9 +++++---- 1 file 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 -- cgit v1.2.1