You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
417 B
25 lines
417 B
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LTLIBRARIES = libsparse.la
|
|
|
|
libsparse_la_SOURCES = \
|
|
spalloc.c \
|
|
spbuild.c \
|
|
spconfig.h \
|
|
spdefs.h \
|
|
spextra.c \
|
|
spfactor.c \
|
|
spoutput.c \
|
|
spsmp.c \
|
|
spsolve.c \
|
|
sputils.c
|
|
|
|
|
|
if KLU_WANTED
|
|
libsparse_la_SOURCES += spCSC.c
|
|
endif
|
|
|
|
AM_CPPFLAGS = @AM_CPPFLAGS@ -I$(top_srcdir)/src/include
|
|
AM_CFLAGS = $(STATIC)
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|