# makefile to compile class notes. Compiles to dvi and then use dvipdf to convert to a pdf document.
# it compiles twice, because during the first run no figure references are created. This is a stupid
# behavior of latex...
all:
	latex *.tex
	latex *.tex
	dvipdf *.dvi
	
	
clean:
	rm -f *.aux *.log 