#
# Very simple makefile to our LaTeX Report
#
#

LATEX = pdflatex

all: report

report: report.pdf

# latex needs to be run 3 times so it can iron out all of the
# references/table of contents stuff and get rid of all warnings
report.pdf: report.tex
	$(LATEX) report.tex 
	$(LATEX) report.tex 
	$(LATEX) report.tex

clean:
	rm -rf *pdf *out *aux *log *~ *toc