File: Makefile.am

package info (click to toggle)
singular 1%3A4.1.1-p2%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 35,860 kB
  • sloc: cpp: 288,280; ansic: 17,387; lisp: 4,242; yacc: 1,654; python: 1,608; makefile: 1,424; lex: 1,387; perl: 632; sh: 567; xml: 182
file content (44 lines) | stat: -rw-r--r-- 1,601 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
ACLOCAL_AMFLAGS = -I ../../m4

AM_CPPFLAGS = -I${top_srcdir} -I${top_builddir} \
$(FACTORY_INCLUDES) $(OMALLOC_INCLUDES) $(RESOURCES_INCLUDES) \
${NTL_CPPFLAGS} $(FLINT_CFLAGS) ${GMP_CPPFLAGS}

# noinst???
noinst_LTLIBRARIES = libcoeffs.la
###### libcoeffsdir = $(libdir)/singular
# noinst_HEADERS= \
#	gnumpc.h gnumpfl.h longrat.h modulop.h ffields.h \
#	rintegers.h rmodulo2m.h rmodulon.h shortfl.h \
#	mpr_complex.h mpr_global.h

SOURCES = \
  numbers.cc rintegers.cc rmodulo2m.cc rmodulon.cc shortfl.cc \
  gnumpc.cc gnumpfl.cc longrat.cc longrat0.cc ffields.cc \
  modulop.cc mpr_complex.cc ntupel.cc \
  bigintmat.cc  AE.cc OPAE.cc AEp.cc OPAEp.cc AEQ.cc OPAEQ.cc \
  flintcf_Q.cc flintcf_Zn.cc

libcoeffs_la_SOURCES   = $(SOURCES)

libcoeffs_la_includedir  =$(includedir)/singular/singular/coeffs
libcoeffs_la_include_HEADERS = \
  coeffs.h numbers.h si_gmp.h gnumpc.h gnumpfl.h longrat.h modulop.h ffields.h rintegers.h rmodulo2m.h rmodulon.h \
  shortfl.h mpr_complex.h mpr_global.h numstats.h ntupel.h \
  bigintmat.h Enumerator.h AE.h OPAE.h AEp.h OPAEp.h AEQ.h OPAEQ.h \
  flintcf_Q.h flintcf_Zn.h

libcoeffs_la_LIBADD = ${top_builddir}/reporter/libreporter.la ${top_builddir}/misc/libmisc.la \
$(FACTORY_LIBS) $(RESOURCES_LIBS) $(OMALLOC_LIBS) \
$(FLINT_LIBS) $(GMP_LIBS) $(NTL_LIBS)

libcoeffs_la_LDFLAGS = $(SINGULAR_LDFLAGS)

TESTS_ENVIRONMENT = SINGULARPATH='${top_srcdir}/../factory:${top_builddir}/../factory'
TESTS_ENVIRONMENT += SINGULAR_ROOT_DIR='$(top_builddir)'

TESTS = test
check_PROGRAMS = $(TESTS)

test_SOURCES = test.cc
test_LDADD   = libcoeffs.la $(libcoeffs_la_LIBADD)