aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojtek Kosior <kwojtus@protonmail.com>2019-06-02 21:21:37 +0200
committerWojtek Kosior <kwojtus@protonmail.com>2019-06-02 21:21:37 +0200
commita873a4c8702f8133d104814e855cc6d3738f331f (patch)
treea9c86cf7bac32915915baaa7075fcc17fe93e1a0
parent6fa98bc71a560fc54d6f1ca28e53068dfbc4c356 (diff)
downloadfortran-assignment2-a873a4c8702f8133d104814e855cc6d3738f331f.tar.gz
fortran-assignment2-a873a4c8702f8133d104814e855cc6d3738f331f.zip
remove redundant flags for ifort
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0f53c01..52ee01c 100644
--- a/Makefile
+++ b/Makefile
@@ -48,8 +48,8 @@ FFLAGS = -std=f2008 -Wall -pedantic -fbounds-check -fimplicit-none \
endif
ifeq ($(FC), ifort)
-FFLAGS = -std08 -module . -implicitnone -pedantic -check bounds \
- -O2 -I/usr/include -lfftw3 -lm
+FFLAGS = -std08 -module . -implicitnone -check bounds -O2 \
+ -I/usr/include -lfftw3
endif
endif