SHELL=/bin/sh # SRCS= SNO16GRB.f OBJS= SNO16GRB.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_d -lw3emc_v2.0.3_d -lbacio_v2.0.1_4 CMD = snow_sno16grb DEBUG = -g -traceback FFLAGS = -O2 -real-size 64 $(DEBUG) # Lines from here on down should not need to be changed. They are the # actual rules which make uses to build sno16grb. # 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