Code

Added 'egit' to the list of frontends.
[talk-dvcs-git.git] / Makefile
1 all: slides.pdf handout.pdf
3 %.pdf: %.tex
4         pdflatex $<
5         while grep -E -q 'No file.*\.toc' $(<:%.tex=%.log); do \
6                 pdflatex $<; \
7         done
9 slides.pdf: slides.tex main.tex
11 handout.pdf: handout.tex main.tex
13 clean:
14         rm -f *.aux *.log *.nav *.out *.snm *.toc *.vrb
15         rm -f slides.pdf handout.pdf
17 .PHONY: all clean