CC = cc
CFLAGS = -g -O2

all: PAMSIL

PAMSIL: matrices.o utility.o silswap.o silswap_driver.o
	$(CC) -o $@ $^ -lm
