added service section
[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
9 clean: 
10         rubber -d --clean *.tex
11         rm -f *.tmp
12         rm -f vc
13
14 viewpdf: all
15         evince *.pdf
16
17 spell:
18         aspell -c -t --tex-check-comments -b text.tex
19
20 vc:
21         ./vc-git
22
23 .PHONY: clean all

Benjamin Mako Hill || Want to submit a patch?