Added NAG support (untested)
This commit is contained in:
parent
07e8fa9d6a
commit
e883e8a17e
1 changed files with 6 additions and 1 deletions
|
@ -5,7 +5,12 @@ 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