added .gitignore file
[bmh-jobmarket_coverletter] / Makefile
1 #!/usr/bin/make
2
3 all: $(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
13 viewpdf: all
14         evince *.pdf
15
16 spell:
17         aspell -c -t --tex-check-comments -b text.tex
18
19
20 .PHONY: clean all

Benjamin Mako Hill || Want to submit a patch?