source: git/libpolys/coeffs/Makefile.am @ 2a4a23

fieker-DuValspielwiese
Last change on this file since 2a4a23 was e625a39, checked in by Hans Schoenemann <hannes@…>, 7 years ago
removed: juliacf.*
  • 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_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  AE.cc OPAE.cc AEp.cc OPAEp.cc AEQ.cc OPAEQ.cc \
20  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 ffields.h rintegers.h rmodulo2m.h rmodulon.h \
27  shortfl.h mpr_complex.h mpr_global.h numstats.h ntupel.h \
28  bigintmat.h Enumerator.h AE.h OPAE.h AEp.h OPAEp.h AEQ.h OPAEQ.h \
29  flintcf_Q.h flintcf_Zn.h
30
31libcoeffs_la_LIBADD = ${top_builddir}/reporter/libreporter.la ${top_builddir}/misc/libmisc.la \
32$(FACTORY_LIBS) $(RESOURCES_LIBS) $(OMALLOC_LIBS) \
33$(FLINT_LIBS) $(GMP_LIBS) $(NTL_LIBS)
34
35libcoeffs_la_LDFLAGS = $(SINGULAR_LDFLAGS)
36
37TESTS_ENVIRONMENT = SINGULARPATH='${top_srcdir}/../factory:${top_builddir}/../factory'
38TESTS_ENVIRONMENT += SINGULAR_ROOT_DIR='$(top_builddir)'
39
40TESTS = test
41check_PROGRAMS = $(TESTS)
42
43test_SOURCES = test.cc
44test_LDADD   = libcoeffs.la $(libcoeffs_la_LIBADD)
Note: See TracBrowser for help on using the repository browser.