CC = gcc
CFLAGS = -O2 -ansi -I/usr/local/include/pari

all:    mattrans

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

