added new support for note files and tweaks for better footnotes
[beamer-mako] / template / Makefile
1 #!/usr/bin/make
2
3 all: $(patsubst %.tex,%.pdf,$(wildcard *.tex)) 
4 pdf: all
5
6 %.pdf: %.tex
7         mogrify -format pdf figures/logo.svg
8         rubber -fd $<
9         extract-notes $<
10
11 clean: 
12         rubber -d --clean *.tex
13         rm -f *.tmp
14         rm -f vc
15         rm -f figures/logo.pdf
16         rm -f *.pdfpc
17
18 viewpdf: all
19         evince *.pdf
20
21 spell:
22         aspell -c -t --tex-check-comments -b text.tex
23
24 vc:
25         vc-git
26
27
28
29 .PHONY: clean all

Benjamin Mako Hill || Want to submit a patch?