Skip to content
Snippets Groups Projects
Commit d5471696 authored by Antoine Cyril David Hoffmann's avatar Antoine Cyril David Hoffmann :seedling:
Browse files

lapack and blas are included

parent dfa22ff9
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,6 @@ FMDIR = $(HOME)/lib/FM
FFTW3DIR = $(HOME)/lib/fftw-3.3.8
#FFTW3DIR = $(FFTW_HOME)#for Marconi
FUTILS_DIR = $(HOME)/lib/futils/src
#LAPACKDIR = $(HOME)/lib/lapack
LAPACKDIR = $(HOME)/lib/lapack-3.10.0
BLASDIR = $(HOME)/lib/BLAS-3.11.0
# Naming ideas : HeLaZ, MoNoLiT (Moment Non Linear Torroidal)
......@@ -78,10 +78,16 @@ ifdef FFTW3DIR
endif
# Add lapack local lib
#ifdef LAPACKDIR
LIBS += -llapack -lblas
# LDIRS += -L$(LAPACKDIR)/lib
#endif
ifdef LAPACKDIR
LIBS += -llapack
LDIRS += -L$(LAPACKDIR)
endif
# Add blas local lib
ifdef BLASDIR
LIBS += -lblas
LDIRS += -L$(BLASDIR)
endif
# FM library
ifdef FMDIR
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment