######################################################################################## # Makefile for ccpa_6h_to_3h # Use: # make - build the executable ##################################################################### SHELL= /bin/bash #FC = ifort #CPP = icpc #CPPFLAGS = #W3LIBDIR = /nwprod/lib #FFLAGS = -assume byterecl -convert big_endian -g -traceback #LIBS = -L$(W3LIBDIR) -lbacio_4 -lw3nco_4 SRCS = CCPA_accum_1h_files.f90 CMD = ccpa_accum_1h_files OBJS = $(CMD): $(SRCS) $(FC) $(SRCS) $(FFLAGS) -o $(@) $(OBJS) $(LIBS) install: mv $(CMD) ../../exec/$(CMD)