#!/usr/bin/make
-all: vc $(patsubst %.tex,%.pdf,$(wildcard *.tex))
+all: $(patsubst %.tex,%.pdf,$(wildcard *.tex))
pdf: all
%.pdf: %.tex
+ ./vc-git
rubber -fd $<
- rm -f vc
clean:
rubber -d --clean *.tex
spell:
aspell -c -t --tex-check-comments -b text.tex
-vc:
- ./vc-git
-
.PHONY: clean all