CFLAGS = -Wall
LDLIBS = -lm

plot.svg: plot.gpi data.txt
	gnuplot $<

data.txt: main
	./$< > $@

clean:
	$(RM) main data.txt plot.svg
