diff options
-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 |