rendered paste body# The following is for LINUX using the gfortran compiler
ifeq ($(DRAO_PLAT),LINUXGF)
AFLAGS = -=SUN
CC = gcc
CFLAGS = -O -c -DLINUX
ifeq ($(DRAO_BYTES),IBM)
CFLAGS = -O -c -DIBM
endif
#Added mcmodel=medium fortran compiler options to
#ensure there is enough memory for larger dataset
#processing - Burton Colter 05/17/2011
FF = gfortran -std=legacy -mcmodel=medium -ffixed-form
FC = gfortran -std=legacy -ffixed-form
EFF = gfortran -std=legacy -ffixed-form
XLF = gfortran -std=legacy -ffixed-form
FFLAGS = -c -O -fno-second-underscore -fno-range-check
FORFLAGS = -c -O -fno-second-underscore -fno-range-check
EFFLAGS = -c -O -fno-second-underscore -fno-range-check
ARF = ar ts
endif