CFLAGS = -Wall -Werror -std=gnu99 -O
CFLAGS += `gsl-config --cflags`
LDLIBS += `gsl-config --libs`

default: pow12.pdf arxiv

pow12.pdf : gpi.pow12.gpi data ; pyxplot $<

data: main ; ./$< > $@

clean:
	$(RM) main data pow12.pdf

arxiv:
	$(RM) lecture10.tgz
	tar --create --gzip --file lecture10.tgz *
