aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 317e594..9f201fe 100644
--- a/Makefile
+++ b/Makefile
@@ -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