diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -3,24 +3,24 @@ TARGET=$(subst .tex,.pdf,$(wildcard *.tex)) all: $(TARGET) %.dep: %.tex - perl -lnwe 'print "$*.pdf: $$1" if /\\input{([\w-]+\.tex)}/' <$< >$@ + perl -lnwe 'print "$*.pdf: $$1" if /\\input{([\w-]+\.tex)}/' <$< >$@ include $(TARGET:.pdf=.dep) samenvatting.pdf : samenvatting.tex - xelatex $< - xelatex $< + xelatex $< + xelatex $< genesis.pdf : genesis.tex - xelatex $< - xelatex $< + xelatex $< + xelatex $< %.pdf : %.tex - latexmk -pdf $< + latexmk -pdf $< clean: - latexmk -c - rm -f *.dep + latexmk -c + rm -f *.dep .PHONY: clean |