improved abstract so that it removes the text from the file
[latex_mako] / letter_template / 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         rm -f figures/*.pdf
13
14 viewpdf: all
15         evince *.pdf
16
17 spell:
18         aspell -c -t --tex-check-comments -b text.tex
19
20
21 .PHONY: clean all

Benjamin Mako Hill || Want to submit a patch?