#------------------------------------------------------------------------- # Makefile for the Beta-Advection guidance program on the IBM-SP # # History: 00/04/06 Gross, J. created from HP Makefile # 01/01/19 Gross, J. changed w3libs to * from *_604 # 03/02/10 Gross, J. change from IBMSP to Power4 # 06/07/2004 C. Sisko added link to libguidanceio.a # 30/11/2006 C. Sisko added install macro and ported to Mist # 26/10/2012 A. Krautkramer port to WCOSS # #------------------------------------------------------------------------- # SHELL = /bin/sh SRCM = bamadv.f OBJM = FC = ifort LIBS = -L../../lib -lguidanceio168 -L/nwprod/lib -lbacio_4 -lip_4 \ -lsp_4 -lw3nco_4 -lpthread -liomp5 INCS = -I../../include LDFLAGS = #FFLAGS = -qsmp=noauto -qintsize=4 -qrealsize=8 -qsuppress=1514-008 FFLAGS = -g -align all #LIBS = -qsmp -lessl -L/nwprod/lib -lbacio_4 -lip_d -lsp_d -lw3_d \ # -L../../lib -lguidanceio168 CMD = bamadv.x $(CMD): $(SRCM) $(FC) $(FFLAGS) $(LDFLAGS) $(SRCM) $(INCS) $(LIBS) -o $(CMD) clean: -rm -f $(OBJM) $(CMD) install: -cp -f $(CMD) ../../exec