Skip to content

Commit 1862f61

Browse files
committed
Update makefile
Removing double quotes from ifeq.
1 parent 81606ce commit 1862f61

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ PREFIX ?= /usr/local
22

33
FC ?= gfortran
44

5-
ifeq ($(FC),"gfortran")
6-
FFLAGS ?= -O3 -g -fbacktrace -fPIC
5+
ifeq ($(FC),gfortran)
6+
FFLAGS ?= -O3 -g -fbacktrace -fPIC
77
endif
8-
ifeq ($(FC),"ifort")
9-
FFLAGS ?= -O3 -g -traceback -fPIC
8+
ifeq ($(FC),ifort)
9+
FFLAGS ?= -O3 -g -traceback -fPIC
1010
endif
1111

1212
.PHONY: all clean cleanall install install-docs test

0 commit comments

Comments
 (0)