Added NAG support (untested)
This commit is contained in:
parent
07e8fa9d6a
commit
e883e8a17e
1 changed files with 6 additions and 1 deletions
|
@ -1,11 +1,16 @@
|
||||||
.PHONY: veryclean clean force export help test run
|
.PHONY: veryclean clean force export help test run
|
||||||
|
|
||||||
F:= ifort
|
F := ifort
|
||||||
BUILD_DIR := build
|
BUILD_DIR := build
|
||||||
|
|
||||||
HP_LIB := $(BUILD_DIR)/libhp.a
|
HP_LIB := $(BUILD_DIR)/libhp.a
|
||||||
|
|
||||||
|
# Untested NAG support
|
||||||
|
ifeq ($(F),nagfor)
|
||||||
|
F_OPTS := -fpic -I $(BUILD_DIR)
|
||||||
|
else
|
||||||
F_OPTS := -fpic -module $(BUILD_DIR)
|
F_OPTS := -fpic -module $(BUILD_DIR)
|
||||||
|
endif
|
||||||
|
|
||||||
ifdef debug
|
ifdef debug
|
||||||
F_OPTS += -ggdb -debug-parameters used
|
F_OPTS += -ggdb -debug-parameters used
|
||||||
|
|
Loading…
Reference in a new issue