#------------------------------------------------------------------------- # Makefile for the Altantic SHIFOR guidance program # # History: 05/01/2004 Gross, J. created from HP Makefile # 06/06/2005 C. Sisko, added link to libguidance.a # 28/11/2006 C. Sisko, added macro to install executable # 28/11/2006 C. Sisko, added supression of warning message # 15/12/2012 A. Krautkramer, converted to Linux and Ifort for the WCOSS transition # #------------------------------------------------------------------------- SRCM = alshifor.f OBJM = FC = ifort #FFLAGS = -qsmp=noauto -qintsize=4 -qrealsize=8 -qsuppress=1514-008 FFLAGS = -g -align all LIBS = -L../../lib -lguidanceio INCS = -I../../include CMD = alshifor.x $(CMD): $(SRCM) $(FC) $(FFLAGS) $(SRCM) $(LIBS) $(INCS) -o $(CMD) clean: rm -f $(CMD) install: cp -f $(CMD) ../../exec