source: git/libpolys/coeffs/Makefile.am

spielwiese Release-4-3-2p1
Last change on this file was 54561a, checked in by Hans Schoenemann <hannes@…>, 16 months ago
NTL_CPPFLGAS -> NTL_CXXFLAGS (-stdc0..), NTL_CPPFLAGS (-I..)
  • Property mode set to 100644
File size: 1.6 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../m4
2
3AM_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???
8noinst_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
15SOURCES = \
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
22libcoeffs_la_SOURCES   = $(SOURCES)
23
24libcoeffs_la_includedir  =$(includedir)/singular/coeffs
25libcoeffs_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
32libcoeffs_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
36libcoeffs_la_LDFLAGS = $(SINGULAR_LDFLAGS)
37
38TESTS_ENVIRONMENT = SINGULARPATH='${top_srcdir}/../factory:${top_builddir}/../factory'
39TESTS_ENVIRONMENT += SINGULAR_ROOT_DIR='$(top_builddir)'
40
41TESTS = test
42check_PROGRAMS = $(TESTS)
43
44test_SOURCES = test.cc
45test_LDADD   = libcoeffs.la $(libcoeffs_la_LIBADD)
46
47EXTRA_DIST = rintegers2.cc rintegers3.cc
Note: See TracBrowser for help on using the repository browser.