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

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