CC = icc
INCS = -I/usr/include
LIBS = -L/usr/lib -lnetcdf -lm

PRInterp_varRays:	PRInterp_varRays.o
	$(CC) -o PRInterp_varRays PRInterp_varRays.o -lm

PRInterp_varRays.o:	PRInterp_varRays.c 
	$(CC) -c PRInterp_varRays.c 

