SHELL=/bin/sh # SRCS= editbufr.f gtgdef.f raddate.f OBJS= editbufr.o gtgdef.o raddate.o # Tunable parameters # # FC Name of the fortran compiling system to use # LDFLAGS Flags to the loader # LIBS List of libraries # CMD Name of the executable # FC=ifort LDFLAGS = CMD = rcdas_editbufr LIBS = -L/nwprod/lib -lw3nco_4 -lw3emc_4 -lbufr_4_64 FFLAGS = -O2 -convert big_endian -assume byterecl # Lines from here on down should not need to be changed. They are the # actual rules which make uses to build a.out. # all: $(CMD) $(CMD): $(OBJS) $(FC) $(LDFLAGS) -o $(@) $(OBJS) $(LIBS) clean: rm -f $(OBJS) $(CMD)