diff options
author | Camil Staps | 2016-02-09 22:19:43 +0100 |
---|---|---|
committer | Camil Staps | 2016-02-09 22:19:43 +0100 |
commit | 4e95a722caa3931c2747cd7b256b90ee1f48aa9f (patch) | |
tree | fac565a938275da473e96fda8a2d6efbd64b385a | |
parent | fixed makefile (diff) |
PDF instead of dvi
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,10 +3,10 @@ TARGET=summary.pdf $(subst .tex,.pdf,$(wildcard discussion-*.tex)) all: $(TARGET) summary.pdf: summary.tex $(shell ls sum-*.tex) dogmatics.sty - latexmk $< + latexmk -pdf $< %.pdf: %.tex $(shell ls sum-*.tex) dogmatics.sty - latexmk $< + latexmk -pdf $< clean: pdflatex -c |