CC=/usr/local/gcc-7.1/bin/gcc

all: rint order.eps order.pdf

rint: rint.c
	$(CC) -std=gnu99 -Wall -o rint rint.c -lm

order.eps: order.plt rint.dat
	gnuplot order.plt

order.pdf: order.eps
	epstopdf order.eps

clean:
	rm -f rint
