# MAKEFILE for firstguess # # Function: builds the executable rtma_firstguess # # Define the fortran compiler and options FFLAGS= LDFLAGS = CMD = akrtma_firstguess LIBS = FC=xlf90 OBJS = domain_dims.o create_firstguess.o process_allrjlists.o .f.o : ${FC} ${FFLAGS} -c $< LINK-OBJS = ${OBJS} all: $(CMD) $(CMD): ${LINK-OBJS} ${FC} -o $(CMD) ${LDFLAGS} ${LINK-OBJS} ${LIBS} clean: /bin/rm -f *.o $(CMD)