############################################################ # Note that this 'Makefile' assumes that the following # environment variables are set: # # F77 # F77FLAGS # F77CFLAGS # F77LFLAGS # LIBBLAS ############################################################ .IGNORE: F77_COMPILE = $(F77) $(F77FLAGS) $(F77CFLAGS) F77_LOAD = $(F77) $(F77FLAGS) $(F77LFLAGS) .f.o: $(F77_COMPILE) $*.f EXECUTABLES = integral all: $(EXECUTABLES) integral: integral.o fcn.o $(F77_LOAD) integral.o fcn.o -lp329f -lodepack \ -llinpack $(LIBBLAS) -o integral clean: /bin/rm $(EXECUTABLES) /bin/rm *.o