diff options
author | Camil Staps | 2016-01-24 19:15:58 +0100 |
---|---|---|
committer | Camil Staps | 2016-01-24 19:15:58 +0100 |
commit | aa2f3b4a239b626d6d8242ea89ebbc2fa02292ea (patch) | |
tree | f79e0f782583ef77d7d853e4dc2669b7575538fd | |
parent | Start samenvatting; Makefile (diff) |
fix 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 |