I am completely new to Fortran90 and I need to install LAPACK for this code that I want to run. Looking at the make.inc file of the code, I need to specify the relevant directory that leads to the LAPACK library:
LAPACKDIR=
LAPACKLIBS=-L${LAPACKDIR}/lib -llapack -lblas
I tried following installation instructions for LAPACK that I found online (https://www.netlib.org/lapack/lawn81/node10.html), but then it is not clear at all to me where to find the directory with the "lib" subdirectory in it.
I would appreciate any help on this. Thanks in advance.