SHELL= /bin/bash #INC= /nwprod/lib/incmod/g2_4 #LIBS= -L/nwprod/lib -lg2_4 -lw3nco_4 -lbacio_4 \ -ljasper -lpng -lz SRCS= STAT_RM_BIAS_WET.f90 OBJS= $(SRCS:.f90=.o) CMD= gefs_enssrbias #FC= ifort #FFLAGS= -O3 -qsuffix=f=f90 -qlist -qsource -qlanglvl=90PURE -bnoquiet #FFLAGS= -O3 -qsuffix=f=f90 -qlist -qsource -bnoquiet #FFLAGS= -O3 -list -traceback #FFLAGS = -O3 -g -convert big_endian -I $(INC) LDFLAGS= #$(CMD): $(SRCS) # $(FC) $(SRCS) $(FFLAGS) -o $(@) $(OBJS) $(LIBS) # Lines from here on down should not need to be changed. They are the # actual rules which make uses to build a.out. # all: $(CMD) $(CMD): $(OBJS) $(FC) $(LDFLAGS) -o $(@) $(OBJS) $(LIBS) rm -f $(OBJS) $(OBJS): $(SRCS) $(FC) $(FFLAGS) -c $(SRCS) $(OBJS): makefile allclean: clean all clean: -rm -f $(OBJS) install: mv $(CMD) ../../exec/$(CMD)