diff --git a/Makefiles/Makefile.in.intel b/Makefiles/Makefile.in.intel
index 42cdc6306cc9960876246073afb050598f44f235..31e8614de37123046485ca1261eb1f1494586328 100644
--- a/Makefiles/Makefile.in.intel
+++ b/Makefiles/Makefile.in.intel
@@ -65,7 +65,7 @@ USE_OPENMP           = YES
 #              Only some pack/unpack routines are implemented with OpenMP to test it.
 #              Check test_nb3dfft_detailed to see, if it helps you and implement the missing functions yourself.
 # only available if USE_OPENMP=YES
-LOOP_OPENMP    = NO
+LOOP_OPENMP    = YES
 # more: PACKMEMCP, PACKLOOP
 
 # YES will enable single precision (default = NO)
@@ -116,13 +116,13 @@ USE_MPI_MODULE = YES
 ### FFT ###
 ifeq ($(USE_FFT),FFTW)
    ifeq ($(USE_SINGLE_PRECISION),YES)
-      FFT_BASE     = /opt/fftw/3.3.3sp_intel14_openmp
-#      FFT_BASE     = /home/itv/lib/fftw/3.3.3sp_intel14_openmp
+#      FFT_BASE     = /opt/fftw/3.3.3sp_intel14_openmp
+      FFT_BASE     = /home/itv/lib/fftw/3.3.3sp_intel14_openmp
       FFT_LIBS_SER = -L$(FFT_BASE)/lib -lfftw3f
       FFT_LIBS_OMP = -L$(FFT_BASE)/lib -lfftw3f_omp -lfftw3f
    else
-      FFT_BASE     = /opt/fftw/3.3.3_intel14_openmp
-#      FFT_BASE     = /home/itv/lib/fftw/3.3.3_intel14_openmp
+#      FFT_BASE     = /opt/fftw/3.3.3_intel14_openmp
+      FFT_BASE     = /home/itv/lib/fftw/3.3.4_intel15_openmp
       FFT_LIBS_SER = -L$(FFT_BASE)/lib -lfftw3
       FFT_LIBS_OMP = -L$(FFT_BASE)/lib -lfftw3_omp -lfftw3
    endif
@@ -262,7 +262,7 @@ endif
 #  -ftz
 #     FTZ-Flag: Sets denormal results from floating-point calculations to zero.
 #     DAZ-Flag: Treats denormal values used as input to floating-point instructions as zero
-#     The Intel® Streaming SIMD (Single Instruction Multiple Data) Extensions (Intel® SSE) and the Intel® SSE 2 instructions,
+#     The Intel�� Streaming SIMD (Single Instruction Multiple Data) Extensions (Intel�� SSE) and the Intel�� SSE 2 instructions,
 #     including scalar and vector instructions, benefit from enabling the FTZ and DAZ flags respectively.
 #     The -ftz option only has an effect when the main program is being compiled. It sets the FTZ/DAZ mode for the process.
 #     The initial thread and any threads subsequently created by that process will operate in the FTZ/DAZ mode.