#------------------------------------------------------------------------- # Makefile for the Altantic and east Pacific 5-day Extrapolation uidance program # # History: 05/01/25 Gross, J. created from HP Makefile # 06/07/2005 C. Sisko added link to libguidanceio.a # 10/24/2012 A. Krautkramer - WCOSS Transition # 10/07/2016 C. Mattocks - WCOSS Transition to Cray # 08/21/2021 S. Stevenson - WCOSS2 Cray transition # 01/31/2023 J. Dostalek - Fortran 90 transition # 01/10/2024 R. Zelinsky - Added DEBUG target #------------------------------------------------------------------------- SRCM = extrap.f90 OBJM = LIBS = -L../../lib -lguidanceio INCS = -I../../include FC = ftn ifeq ($(FC), ftn) FFLAGS = -g -align all -w DEBUG = -ftrapuv -check_all -traceback -g else FFLAGS = DEBUG = endif CMD = extrap.x $(CMD): $(SRCM) $(FC) $(FFLAGS) $(SRCM) $(LIBS) $(INCS) -o $(CMD) debug : FFLAGS += $(DEBUG) debug : $(CMD) clean: rm -f $(CMD) install: cp -f $(CMD) ../../exec