summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamil Staps2016-02-12 14:19:28 +0100
committerCamil Staps2016-02-12 14:19:28 +0100
commitf3283a7cba233c460547ccff4d2933c72cc1bdd7 (patch)
treee5ee6df2665d0093561bda0f397e903c69251244
parentAssignment 2; \next command (diff)
Don't need deps in this project
-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