We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81606ce commit 1862f61Copy full SHA for 1862f61
makefile
@@ -2,11 +2,11 @@ PREFIX ?= /usr/local
2
3
FC ?= gfortran
4
5
-ifeq ($(FC),"gfortran")
6
-FFLAGS ?= -O3 -g -fbacktrace -fPIC
+ifeq ($(FC),gfortran)
+ FFLAGS ?= -O3 -g -fbacktrace -fPIC
7
endif
8
-ifeq ($(FC),"ifort")
9
-FFLAGS ?= -O3 -g -traceback -fPIC
+ifeq ($(FC),ifort)
+ FFLAGS ?= -O3 -g -traceback -fPIC
10
11
12
.PHONY: all clean cleanall install install-docs test
0 commit comments