corrected compilation exception for gfortran in case of compilername!=F90

This commit is contained in:
Henry Hutasoit 2012-11-28 13:54:02 +00:00
parent 1e6cc1ed62
commit 07bec16268
1 changed files with 1 additions and 1 deletions

View File

@ -393,7 +393,7 @@ IO.o: IO.f90 \
DAMASK_spectral_interface.o: DAMASK_spectral_interface.f90 \
prec.o
ifeq "$(COMPILERNAME)" "gfortran" # fno-range-check because NaN is defined in prec
ifeq "$(F90)" "gfortran" # fno-range-check because NaN is defined in prec
prec.o: prec.f90
$(PREFIX) $(COMPILERNAME) $(COMPILE) -c -fno-range-check prec.f90 $(SUFFIX)
else