SHELL=/bin/sh # # This is the WAVEWATCH III bulletin generator # compied for silver and winterhawk nodes # SRCS= multiwavebull.f fndprt.f mpars.f wavnu2.f OBJS= multiwavebull.o fndprt.o mpars.o wavnu2.o # FC = ifort FFLAGS = -O -xHost -list -auto -convert big_endian -assume byterecl -openmp LDFLAGS = -O -xHost -list -auto -convert big_endian -assume byterecl -openmp LIBS = CMD = multiwavebull # all: $(CMD) $(CMD): $(OBJS) $(FC) $(LDFLAGS) -o $(CMD) $(OBJS) $(LIBS) clean: -rm -f $(OBJS)