LATEX=pdflatex
DVI=dvipdfm
FILE=report

all:
	$(LATEX) $(FILE).tex
open:
	open $(FILE).pdf
clean:
	rm -rf *.aux *.dvi *.toc *.log ${FILE}.pdf
