1) It would be nice if vasp.5.lib could receive a little similar attention: I note in particular that the makefile.linux_ifc_P4 makefile still has the Fortran compiler set as 'ifc'.
2) I assume at some point, the non-standard compilation lines should also be updated to use -names lowercase rather than -lowercase, as the standard one has.
3) As far as I know, libguide is no longer included with the Intel composer+MKL package. I'm happy to be corrected on this, but otherwise, it may be worth preparing for its removal.
4) There are a number of places in the makefiles where library paths are still hard-coded, for example for GotoBLAS and FFTW. Replacing, for example:
Code: Select all
FFT3D?=?fftw3d.o?fft3dlib.o?/opt/libs/fftw-3.1.2/lib/libfftw3.a
Code: Select all
USE_FFTW_DIR?=?/opt/libs/fftw-3.1.2/lib
FFT3D?=?fftw3d.o?fft3dlib.o?$(USE_FFTW_DIR)/libfftw3.a
In any case, thank you for the changes already made.