# ================================================== # # Makefile for stormcard.x which is part of the LBAR track model. # Written by F. Horsfall and M. DeMaria, May 2001 # # Modified April 2002 to remove reference to parallel GFS directory # added link to libguidanceio.a # # Revised by C. Sisko for port to MIST/DEW, Nov 2006 # A. Krautkramer for port to WCOSS, Oct 2012 # # This version is for WCOSS. # # make - compilies the model # make clean - remove the executables and objects # make install - moves the exectuables/scripts runtime # directories # # ================================================== CP = cp RM = rm -f SRCM = unpackg_d.f OBJM = FC = ifort LIBS = -L/nwprod/lib -lbacio_4 -lw3nco_d # -L../../lib -lguidanceio -L/nwprod/lib -lw3nco_d -lbacio_4 # -lessl INCS = -I../../include #FFLAGS = -qsmp=noauto -qintsize=4 -qrealsize=8 -qsuppress=1514-008 FFLAGS = -g -align all CMD = unpackg_d.x $(CMD): $(SRCM) $(FC) $(FFLAGS) $(SRCM) $(LIBS) $(INCS) -o $(CMD) clean: $(RM) $(CMD) install: $(CP) $(CMD) ../../../exec