SHELL=/bin/sh # SRCS= SNO8GRB.f OBJS= SNO8GRB.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 -lw3emc_v2.0.3_d -lw3nco_v2.0.3_d -lbacio_4 CMD = snow_sno8grb DEBUG = -g -traceback FFLAGS = -convert big_endian -assume byterecl -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 sno8grb.x. # all: $(CMD) $(CMD): $(OBJS) $(FC) $(LDFLAGS) -o $(@) $(OBJS) $(LIBS) clean: -rm -f $(OBJS) *.lst xref.db clobber: clean -rm -f $(CMD) void: clobber -rm -f $(SRCS) makefile install: mv $(CMD) ../../exec