removed auto detection of compilername, it only works if the file you're looking for (in our case "ifort") is in the same directory as the Makefile

This commit is contained in:
Martin Diehl 2012-11-27 17:22:03 +00:00
parent b63044e45e
commit e45e1316ba
1 changed files with 0 additions and 5 deletions

View File

@ -44,12 +44,7 @@ IMKLROOT ?= auto
ACMLROOT ?= auto
LAPACKROOT ?= auto
# if F90 empty: ifort if present, otherwise gfortran
ifeq ($(wildcard ifort),"")
F90?=gfortran
else
F90?=ifort
endif
COMPILERNAME ?= $(F90)