CFLAGS = -Wall -std=c99
LDLIBS = -lm

all: figure.pdf

figure.pdf : figure.pyxplot data ; pyxplot figure.pyxplot

data: main ; ./main > data

clean:
	$(RM) data main figure.pdf
