#------------------------------------------------------------------------- # Makefile for the Altantic Extrapolation guidance program # # History: 05/01/25 Gross, J. created from HP Makefile # 06/06/2005 C. Sisko added link to libguidanceio.a # 10/26/2012 A. Krautkramer - WCOSS Transition # #------------------------------------------------------------------------- SRCM = extrap.f OBJM = FC = ifort LIBS = -L../../lib -lguidanceio168 INCS = -I../../include #FFLAGS = -qsmp=noauto -qintsize=4 -qrealsize=8 -qsuppress=1514-008 FFLAGS = -g -align all LIBS = -L../../lib -lguidanceio168 INCS = -I../../include CMD = extrap.x $(CMD): $(SRCM) $(FC) $(FFLAGS) $(SRCM) $(LIBS) $(INCS) -o $(CMD) clean: rm -f $(CMD) install: cp -f $(CMD) ../../exec