
all: presentation.pdf article.pdf

presentation.pdf: presentation.tex
	pdflatex presentation.tex

article.pdf: article.tex stripheaders hgtip
	pdflatex article.tex

hgtip:
	hg tip --template "{node}" > current-hg-tip

# TODO: copy to sub-directory e.g. .build
stripheaders:
	find ../letterbox -name "*.h" | ./stripheaders.py
	echo "../letterbox/main.c" | ./stripheaders.py -static

clean:
	rm -f *.aux *.pdf *.log *.toc *.nav *.out *.snm *.h hg-current-tip

