SHELL=/bin/sh # SRCS= SNO96GRB.f OBJS= SNO96GRB.o # Tunable parameters # # FC Name of the fortran compiling system to use # LDFLAGS Flags to the loader # LIBS List of libraries # CMD Name of the executable # FC = ifort LDFLAGS = LIBS = -L/nwprod/lib -lw3nco_v2.0.3_4 -lbacio_v2.0.1_4 CMD = snow_sno96grb DEBUG = -g -traceback # # Running with 4 or 8 byte floats gave the same answer. # FFLAGS = -O2 -integer-size 32 $(DEBUG) # Lines from here on down should not need to be changed. They are the # actual rules which make uses to build sno96grb. # all: $(CMD) $(CMD): $(OBJS) $(FC) $(LDFLAGS) -o $(@) $(OBJS) $(LIBS) clean: -rm -f $(OBJS) clobber: clean -rm -f $(CMD) void: clobber -rm -f $(SRCS) makefile install: mv $(CMD) ../../exec