#------------------------------------------------------------------------- # Makefile for Generic Decay Model # # History: # 03/26/2007 C. Sisko # 10/26/2012 A. Krautkramer - Transition to WCOSS # #------------------------------------------------------------------------- SRCM = decaymod.f decay.f aland.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 = decaymod.x $(CMD): $(SRCM) $(FC) $(FFLAGS) $(SRCM) $(LIBS) $(INCS) -o $(CMD) clean: rm -f $(CMD) rm -f *.o install: cp -f $(CMD) ../../exec