TARGETS= slides.pdf

all: $(TARGETS)

%.pdf: %.tex
	pdflatex $<
	pdflatex $<

clean:
	rm -f *.aux *.log *.nav *.out *.toc *.snm

cleanall: clean
	rm -f $(TARGETS)
