diff options
author | Camil Staps | 2016-02-12 14:19:28 +0100 |
---|---|---|
committer | Camil Staps | 2016-02-12 14:19:28 +0100 |
commit | f3283a7cba233c460547ccff4d2933c72cc1bdd7 (patch) | |
tree | e5ee6df2665d0093561bda0f397e903c69251244 | |
parent | Assignment 2; \next command (diff) |
Don't need deps in this project
-rw-r--r-- | Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -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 |