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

all:    mattrans

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

