# # Makefile for test program to read UWM/COADS data sets. # #.................................................................... # The parameters below may vary from machine to machine: # # F77 the Fortran 77 compiler (on most machines it is simply # f77, but machines like the Cray or Convex have their # own compiler name) # # FFLAGS Enter here your compiler options, especially for # optmization; usually FFLAGS = -O #### enter your compiler here F77 = f77 #### enter your options here FFLAGS = -O #### enter your netcdf library file here CDFLIB = /usr/local/lib/libnetcdf.a #.................................................................... newtest.x: newtest.o uwmcdf.o $(F77) $(FFLAGS) -o newtest.x newtest.o uwmcdf.o $(CDFLIB)