# PROJECTS = zzto_01 # PROGRAM = zzto_dck_01.o \ zzto_main_01.o \ zzto_lib_01.o # NAGLIB = -L/teosw/lib -lnag # OPTS = -vms -check bounds -check overflow -check underflow # ### the main command for the makefile # zzto_01: $(PROGRAM) ;\ f77 $(PROGRAM) $(NAGLIB) -o zzto_01 # ### the commands to produce all the obj # zzto_dck_01.o: zzto_dck_01.f ;\ f77 -c -O -automatic -share -fpe4 -c $(OPTS) zzto_dck_01.f # zzto_main_01.o: zzto_main_01.f ;\ f77 -c -O -automatic -share -fpe4 -c $(OPTS) zzto_main_01.f # zzto_lib_01.o: zzto_lib_01.f ;\ f77 -c -O -automatic -share -fpe4 -c $(OPTS) zzto_lib_01.f #