Blame docker-builder-data/build/script/packet/superlu-4.3.files/make.inc

e14835
############################################################################
e14835
#
e14835
#  Program:         SuperLU
e14835
#
e14835
#  Module:          make.inc
e14835
#
e14835
#  Purpose:         Top-level Definitions
e14835
#
e14835
#  Creation date:   October 2, 1995
e14835
#
e14835
#  Modified:	    February 4, 1997  Version 1.0
e14835
#		    November 15, 1997 Version 1.1
e14835
#		    September 1, 1999 Version 2.0
e14835
#
e14835
############################################################################
e14835
#
e14835
#  The machine (platform) identifier to append to the library names
e14835
#
e14835
PLAT = _linux
e14835
e14835
#
e14835
#  The name of the libraries to be created/linked to
e14835
#
e14835
SuperLUroot	= $(HOME)/SuperLU_4.3
e14835
SUPERLULIB   	= $(SuperLUroot)/lib/libsuperlu_4.3.a
e14835
e14835
#BLASLIB   	= $(SuperLUroot)/lib/libblas.a
e14835
e14835
## ATLAS BLAS causes single-precision to fail
e14835
BLASDEF = -DUSE_VENDOR_BLAS
e14835
BLASLIB   	= $(LDFLAGS) -lblas
e14835
e14835
## This BLAS causes single-precision to fail the test in SuperLU
e14835
#BLASDEF 	= -DUSE_VENDOR_BLAS
e14835
#BLASLIB 	= -L/usr/lib -lblas
e14835
e14835
TMGLIB       	= libtmglib.a
e14835
LIBS		= $(SUPERLULIB) $(BLASLIB)
e14835
e14835
#
e14835
#  The archiver and the flag(s) to use when building archive (library)
e14835
#  If your system has no ranlib, set RANLIB = echo.
e14835
#
e14835
ARCH         = ar
e14835
ARCHFLAGS    = cr
e14835
RANLIB       = ranlib
e14835
e14835
CC           = gcc
e14835
CFLAGS       = -O3 -fPIC
e14835
NOOPTS       = -fPIC
e14835
FORTRAN	     = g77
e14835
FFLAGS       = -O2 -fPIC
e14835
LOADER       = $(CC)
e14835
LOADOPTS     =
e14835
e14835
#
e14835
#  C preprocessor defs for compilation for the Fortran interface
e14835
#  (-DNoChange, -DAdd_, -DAdd__, or -DUpCase)
e14835
#
e14835
CDEFS        = -DAdd_
e14835
#
e14835
# The directory in which Matlab is installed
e14835
#
e14835
MATLAB	     = /usr/sww/matlab
e14835