all: newton report.pdf newton.out

clean:
	rm -f newton.out newton report.log \
	report.dvi report.aux report.pdf

newton.out: newton
	./newton > newton.out

newton: newton.c
	gcc -o newton newton.c

report.pdf: report.dvi
	dvipdf report.dvi

report.dvi: report.tex newton.c newton.out
	latex report.tex
