summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 879e180..6861544 100644
--- a/Makefile
+++ b/Makefile
@@ -2,18 +2,12 @@ TARGET=$(subst .tex,.pdf,$(wildcard *.tex))
all: $(TARGET)
-%.dep: %.tex
- perl -lnwe 'print "$*.pdf: $$1" if /\\input{([\w-]+\.tex)}/' <$< >$@
-
-include $(TARGET:.pdf=.dep)
-
-%.pdf : %.tex
+%.pdf : %.tex sv.sty
pdflatex $<
pdflatex $<
clean:
latexmk -c
- rm -f *.dep
.PHONY: clean