#---------------------------------------------------------------------------- # Makefile for the Direct Demonstration Program cvdemd.c #---------------------------------------------------------------------------- COMPILER = gcc -O2 -ffloat-store INC = ../../include LIB = ../../lib OPTS = -I$(INC) HDRS = $(INC)/llnltyps.h $(INC)/cvode.h $(INC)/cvdense.h $(INC)/cvband.h \ $(INC)/cvdiag.h $(INC)/vector.h $(INC)/llnlmath.h cvdemd: cvdemd.o $(COMPILER) -o cvdemd cvdemd.o -L$(LIB) -lcvode -lm cvdemd.o: cvdemd.c $(HDRS) $(COMPILER) $(OPTS) -c cvdemd.c