source: git/kernel/linear_algebra/Makefile.am @ 244674

spielwiese
Last change on this file since 244674 was 244674, checked in by Hans Schoenemann <hannes@…>, 2 years ago
more NTL_CPPFLAGS: modulop.h includes NTL/config.h
  • Property mode set to 100644
File size: 1.0 KB
Line 
1ACLOCAL_AMFLAGS=-I ../../m4
2AM_CPPFLAGS=-I${top_srcdir} -I${top_builddir} -I${top_srcdir}/libpolys -I${top_builddir}/libpolys \
3${FACTORY_INCLUDES} $(OMALLOC_INCLUDES) $(RESOURCES_INCLUDES) \
4${FLINT_CFLAGS} ${NTL_CPPFLAGS} ${GMP_CPPFLAGS}
5
6noinst_LTLIBRARIES=liblinear_algebra.la
7liblinear_algebra_la_SOURCES= \
8Minor.cc MinorInterface.cc MinorProcessor.cc \
9linearAlgebra.cc eigenval.cc interpolation.cc minpoly.cc
10
11
12liblinear_algebra_la_includedir=$(includedir)/singular/kernel/linear_algebra
13liblinear_algebra_la_include_HEADERS= \
14  Minor.h MinorInterface.h MinorProcessor.h \
15  linearAlgebra.h eigenval.h interpolation.h minpoly.h \
16  Cache.h CacheImplementation.h
17
18
19
20TESTS_ENVIRONMENT = SINGULARPATH='${abs_top_builddir}/libpolys/polys/.libs:${abs_top_builddir}/factory/gftables'
21TESTS_ENVIRONMENT += SINGULAR_ROOT_DIR='${abs_top_builddir}'
22
23TESTS = test
24check_PROGRAMS = $(TESTS)
25test_SOURCES = test.cc
26test_LDADD   = liblinear_algebra.la ${builddir}/../../omalloc/libomalloc.la ${builddir}/../../Singular/libSingular.la
27
28CLEANFILES = $(TESTS)
Note: See TracBrowser for help on using the repository browser.