1 ############################################################################
7 # Purpose: Top-level Definitions
9 # Creation date: February 15, 2000
11 # Modified: October 13, 2011
13 # Send bug reports, comments or suggestions to scalapack@cs.utk.edu
15 ############################################################################
17 # C preprocessor definitions: set CDEFS to one of the following:
19 # -DNoChange (fortran subprogram names are lower case without any suffix)
20 # -DUpCase (fortran subprogram names are upper case without any suffix)
21 # -DAdd_ (fortran subprogram names are lower case with "_" appended)
26 # The fortran and C compilers, loaders, and their flags
36 FCLOADFLAGS = $(FCFLAGS)
37 CCLOADFLAGS = $(CCFLAGS)
40 # The archiver and the flag(s) to use when building archive (library)
41 # Also the ranlib routine. If your system has no ranlib, set RANLIB = echo
49 # The name of the ScaLAPACK library to be created
52 SCALAPACKLIB = libscalapack.a
55 # BLAS, LAPACK (and possibly other) libraries needed for linking test programs
58 BLASLIB = -L/Users/Julie/Documents/Boulot/GitHub/lapack -lrefblas
59 LAPACKLIB = -L/Users/Julie/Documents/Boulot/GitHub/lapack -llapack
60 LIBS = $(LAPACKLIB) $(BLASLIB)