1 | ACLOCAL_AMFLAGS = -I ../../m4 |
---|
2 | |
---|
3 | AM_CPPFLAGS = -I${top_srcdir} -I${top_builddir} \ |
---|
4 | $(FACTORY_INCLUDES) $(OMALLOC_INCLUDES) $(RESOURCES_INCLUDES) \ |
---|
5 | $(NTL_CXXFLAGS) ${NTL_CPPFLAGS} $(FLINT_CFLAGS) ${GMP_CPPFLAGS} |
---|
6 | |
---|
7 | # noinst??? |
---|
8 | noinst_LTLIBRARIES = libcoeffs.la |
---|
9 | ###### libcoeffsdir = $(libdir)/singular |
---|
10 | # noinst_HEADERS= \ |
---|
11 | # gnumpc.h gnumpfl.h longrat.h modulop.h ffields.h \ |
---|
12 | # rintegers.h rmodulo2m.h rmodulon.h shortfl.h \ |
---|
13 | # mpr_complex.h mpr_global.h |
---|
14 | |
---|
15 | SOURCES = \ |
---|
16 | numbers.cc rintegers.cc rmodulo2m.cc rmodulon.cc shortfl.cc \ |
---|
17 | gnumpc.cc gnumpfl.cc longrat.cc longrat0.cc ffields.cc \ |
---|
18 | modulop.cc mpr_complex.cc ntupel.cc \ |
---|
19 | bigintmat.cc \ |
---|
20 | flintcf_Qrat.cc flintcf_Q.cc flintcf_Zn.cc |
---|
21 | |
---|
22 | libcoeffs_la_SOURCES = $(SOURCES) |
---|
23 | |
---|
24 | libcoeffs_la_includedir =$(includedir)/singular/coeffs |
---|
25 | libcoeffs_la_include_HEADERS = \ |
---|
26 | coeffs.h numbers.h si_gmp.h gnumpc.h gnumpfl.h longrat.h modulop.h modulop_inl.h \ |
---|
27 | ffields.h rintegers.h rmodulo2m.h rmodulon.h \ |
---|
28 | shortfl.h mpr_complex.h mpr_global.h ntupel.h \ |
---|
29 | bigintmat.h Enumerator.h \ |
---|
30 | flintcf_Qrat.h flintcf_Q.h flintcf_Zn.h |
---|
31 | |
---|
32 | libcoeffs_la_LIBADD = ${top_builddir}/reporter/libreporter.la ${top_builddir}/misc/libmisc.la \ |
---|
33 | $(FACTORY_LIBS) $(RESOURCES_LIBS) $(OMALLOC_LIBS) \ |
---|
34 | $(FLINT_LIBS) $(GMP_LIBS) $(NTL_LIBS) |
---|
35 | |
---|
36 | libcoeffs_la_LDFLAGS = $(SINGULAR_LDFLAGS) |
---|
37 | |
---|
38 | TESTS_ENVIRONMENT = SINGULARPATH='${top_srcdir}/../factory:${top_builddir}/../factory' |
---|
39 | TESTS_ENVIRONMENT += SINGULAR_ROOT_DIR='$(top_builddir)' |
---|
40 | |
---|
41 | TESTS = test |
---|
42 | check_PROGRAMS = $(TESTS) |
---|
43 | |
---|
44 | test_SOURCES = test.cc |
---|
45 | test_LDADD = libcoeffs.la $(libcoeffs_la_LIBADD) |
---|
46 | |
---|
47 | EXTRA_DIST = rintegers2.cc rintegers3.cc |
---|