#------------------------------------------------------------------------- # Makefile for the east Pacific SHIFOR guidance program on the IBM-SP # # History: 05/01/25 Gross, J. created from HP Makefile # 06/07/2005 C. Sisko added link to libguidance.a # 28/11/2006 C. Sisko added install macro # 10/15/2012 - A. Krautkramer - WCOSS Transition # #------------------------------------------------------------------------- SRCM = epshifor.f OBJM = FC = ifort LIBS = -L../../lib -lguidanceio INCS = -I../../include #FFLAGS = -qsmp=noauto -qintsize=4 -qrealsize=8 -qsuppress=1514-008 FFLAGS = -g -align all CMD = epshifor.x $(CMD): $(SRCM) $(FC) $(FFLAGS) $(SRCM) $(LIBS) $(INCS) -o $(CMD) clean: rm -f $(CMD) install: cp -f $(CMD) ../../exec