version 1.46, 2009/06/05 21:03:51
|
version 1.47, 2009/07/24 14:13:48
|
|
|
COMPILER = icc | COMPILER = icc |
FCOMPILER = ifort | FCOMPILER = ifort |
| |
ifneq ($(AUTOCOMPILER),) |
ifneq ($(JSOC_AUTOCOMPILER),) |
COMPILER = $(AUTOCOMPILER) |
COMPILER = $(JSOC_AUTOCOMPILER) |
endif | endif |
| |
ifneq ($(AUTOFCOMPILER),) |
ifneq ($(JSOC_AUTOFCOMPILER),) |
FCOMPILER = $(AUTOFCOMPILER) |
FCOMPILER = $(JSOC_AUTOFCOMPILER) |
endif | endif |
| |
# can set through custom.mk or through environment | # can set through custom.mk or through environment |
ifneq ($(CUSTOM_COMPILER),) |
ifneq ($(JSOC_COMPILER),) |
COMPILER = $(CUSTOM_COMPILER) |
COMPILER = $(JSOC_COMPILER) |
endif | endif |
| |
ifneq ($(CUSTOM_FCOMPILER),) |
ifneq ($(JSOC_FCOMPILER),) |
FCOMPILER = $(CUSTOM_FCOMPILER) |
FCOMPILER = $(JSOC_FCOMPILER) |
endif | endif |
#***********************************************************************************************# | #***********************************************************************************************# |
| |