###################################################################### ####### Novice users should modify entries in this block only ######## ###################################################################### FORTRAN_SRC1 = heat.f iterate.f plot.f EXC1 = heat ###################################################################### #### More advanced users may want to modify entries in this block #### ###################################################################### FFLAGS = -c LFLAGS = LIBS = F77 = f77 ###################################################################### ################## Experts only beyond this point!! ################## ###################################################################### OBJF1 = $(FORTRAN_SRC1:.f=.o) OBJ1 = $(OBJF1) BINDIR = /homes/meibm2a/stf/me345/bin ###################################################################### ############################## Targets ############################### ###################################################################### $(EXC1): $(OBJ1) $(F77) $(LFLAGS) -o $(EXC1) $(OBJ1) $(LIBS) depend: $(FORTRAN_SRC1) $(BINDIR)/fmakedepend $(FORTRAN_SRC1) .f.o: $(F77) $(FFLAGS) $< -o $(<:.f=.o) .c.o: $(CC) $(CFLAGS) $< ###################################################################### ## Automatic dependencies from make depend follow ## ###################################################################### ## DO NOT ADD, MODIFY, OR DELETE THIS LINE -- Make depends on it ##