fix title on JoC pice
[bmh-cv] / Makefile
1 #!/usr/bin/make
2
3 all: vc $(patsubst %.tex,%.pdf,$(wildcard *.tex)) 
4 pdf: all
5
6 %.pdf: %.tex
7         rubber -fd $<
8         rm -f vc
9
10 clean: 
11         rubber -d --clean *.tex
12         rm -f *.tmp
13         rm -f vc
14
15 viewpdf: all
16         evince *.pdf
17
18 spell:
19         aspell -c -t --tex-check-comments -b text.tex
20
21 vc:
22         ./vc-git
23
24 .PHONY: clean all

Benjamin Mako Hill || Want to submit a patch?