2000-04-27 22:03:57 +02:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
2008-08-27 15:39:05 +02:00
|
|
|
noinst_LTLIBRARIES = libsparse.la
|
2000-04-27 22:03:57 +02:00
|
|
|
|
2016-06-21 12:53:49 +02:00
|
|
|
libsparse_la_SOURCES = \
|
* src/include/spconfig.h: Removed spCOMPLEX,
spSEPARATED_COMPLEX_VECTORS and spCOMPATIBILITY defines. This
made including this file from src/include/spmatrix.h unnecessary.
Moved this file to src/maths/sparse/spconfig.h.
* src/include/spmatrix.h: Removed include of
src/include/spconfig.h.
* src/maths/sparse/spalloc.c, src/maths/sparse/spbuild.c,
src/maths/sparse/spcombin.c, src/maths/sparse/spdefs.h,
src/maths/sparse/spfactor.c, src/maths/sparse/spoutput.c,
src/maths/sparse/spsmp.c, src/maths/sparse/spsolve.c,
src/maths/sparse/sputils.c: The other files affected by the
removal of spCOMPLEX, spSEPARATED_COMPLEX_VECTORS and
spCOMPATIBILITY defines. Also: assertions are enabled by
default.
* src/include/smpdefs.h, src/maths/sparse/spsmp.c: SMPmatrix is
now a typedef for void, instead of char. Updated all function
declarations to match this. Also added function prototypes not
previously mentioned in src/include/smpdefs.h.
* src/include/complex.h: Updates of cast from char * to void *
2000-07-03 17:28:50 +02:00
|
|
|
spalloc.c \
|
|
|
|
|
spbuild.c \
|
|
|
|
|
spconfig.h \
|
|
|
|
|
spdefs.h \
|
|
|
|
|
spextra.c \
|
|
|
|
|
spfactor.c \
|
|
|
|
|
spoutput.c \
|
|
|
|
|
spsolve.c \
|
|
|
|
|
sputils.c
|
2000-04-27 22:03:57 +02:00
|
|
|
|
2020-07-12 17:57:16 +02:00
|
|
|
if !KLU_WANTED
|
2014-05-04 16:40:25 +02:00
|
|
|
libsparse_la_SOURCES += spsmp.c
|
2016-06-21 12:53:49 +02:00
|
|
|
endif
|
2000-04-27 22:03:57 +02:00
|
|
|
|
2011-12-27 13:05:51 +01:00
|
|
|
AM_CPPFLAGS = @AM_CPPFLAGS@ -I$(top_srcdir)/src/include
|
2012-07-07 13:18:42 +02:00
|
|
|
AM_CFLAGS = $(STATIC)
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|
2020-07-12 17:57:16 +02:00
|
|
|
|