CFLAGS=-O3
LDFLAGS=-lm

all: iterator test.dat

test.dat: iterator
	./iterator 200 200 10000 0.5 > ${@}

clean:
	rm -f iterator *.o *~ *.dat *.png

