#---------------------------------------------------------------------------- # Makefile for the Krylov Example Program cvkx.c #---------------------------------------------------------------------------- COMPILER = gcc -O2 -ffloat-store INC = ../../include LIB = ../../lib OPTS = -I$(INC) HDRS = $(INC)/llnltyps.h $(INC)/cvode.h $(INC)/iterativ.h $(INC)/cvspgmr.h \ $(INC)/dense.h $(INC)/vector.h $(INC)/llnlmath.h cvkx: cvkx.o $(COMPILER) -L$(LIB) -o cvkx cvkx.o -lcvode -lm cvkx.o: cvkx.c $(HDRS) $(COMPILER) $(OPTS) -c cvkx.c