I am trying to install Lapack-3.3.1 on my Linux ubuntu system
I am having gfortran ,f2c, cmake installed in my system.
I have run following instructions
/*In the lapack-3.3.1 directory type:*/
cp make.inc.example make.inc
make blaslib && make /* [make blaslib is you plan to test LAPACK with the
Reference BLAS]*/
as given inlink
after running above instructions following files are created in same directory
liblapack.a, tmglib_LINUX.a, librefblas.a
and in various subfolders some executable files and some .o files are generated
but Lapack still isn't installed
I can neither detect it through
commanddpkg -s lapack
nor can include it in c programs using
#include "lapack.h"
as given in some online example codes
can you please help me?
Thanks in advance
rahulmishra

