e6f98d28c1
AMD is a set of routines for ordering a sparse matrix prior to Cholesky factorization (or for LU factorization with diagonal pivoting). There are versions in both C and Fortran. A MATLAB interface is provided. Note that this software has nothing to do with AMD the company.
11 lines
176 B
Makefile
11 lines
176 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2006/10/21 16:58:00 steven Exp $
|
|
|
|
LIB= amd
|
|
|
|
SRCS= amd_global.c
|
|
.for s in ${CSRC}
|
|
SRCS+= amd_i_${s}.c amd_l_${s}.c
|
|
.endfor
|
|
|
|
.include <bsd.lib.mk>
|