#---------------------------------------------------------------------------- # Makefile for the Dense Example Program cvdx.c #---------------------------------------------------------------------------- COMPILER = gcc FLAGS = -O2 -ffloat-store INC = ../../include LIB = ../../lib OPTS = -I$(INC) HDRS = $(INC)/llnltyps.h $(INC)/cvode.h $(INC)/cvdense.h $(INC)/vector.h \ $(INC)/dense.h cvdx: cvdx.o $(COMPILER) $(FLAGS) -o cvdx cvdx.o -L$(LIB) -lcvode -lm cvdx.o: cvdx.c $(HDRS) $(COMPILER) $(FLAGS) $(OPTS) -c cvdx.c clean: rm -f *.o