CC = cc
CFLAGS = -O -I/usr/include/pari-include

all:    gp

gp:	gp.c
	$(CC) $(CFLAGS) -o gp gp.c -lpari -lm
