source: git/libpolys/coeffs/Makefile.am @ 6bec87

spielwiese
Last change on this file since 6bec87 was 6bec87, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
. started migrating polys to automake . further fixes to the include paths
  • Property mode set to 100644
File size: 1.2 KB
Line 
1AM_CXXFLAGS     = -fno-implicit-templates --no-exceptions
2INCLUDES        = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/.. -I${srcdir}
3AM_LDFLAGS      = -L${top_builddir}/../coeffs -L${top_builddir}/../reporter -L${top_builddir}/../resources -L${top_builddir}/../../omalloc
4AM_CPPFLAGS     = -DNDEBUG -DOM_NDEBUG
5
6SOURCES = \
7        gnumpc.cc gnumpfl.cc longrat.cc longrat0.cc ffields.cc \
8        modulop.cc mpr_complex.cc \
9        numbers.cc rintegers.cc rmodulo2m.cc rmodulon.cc shortfl.cc
10
11lib_LIBRARIES=libcoeffs.a libcoeffs_g.a
12
13libcoeffs_a_SOURCES = ${SOURCES}
14libcoeffs_g_a_SOURCES = ${SOURCES}
15
16libcoeffs_g_a_CXXFLAGS = -g -Wextra -Wall -pedantic -fdiagnostics-show-option -Wno-long-long
17
18noinst_HEADERS= \
19        gnumpc.h gnumpfl.h longrat.h modulop.h ffields.h \
20        mpr_complex.h mpr_global.h \
21        rintegers.h rmodulo2m.h rmodulon.h shortfl.h
22
23include_HEADERS = coeffs.h numbers.h
24
25## debug version:
26
27check_PROGRAMS=test test-g
28
29test_SOURCES=test.cc
30test_g_SOURCES=test.cc
31
32test_LDADD = -lreporter -lresources -lgmp -lomalloc_ndebug libcoeffs.a
33test_g_LDADD = -lreporter -lresources -lgmp -lomalloc_ndebug libcoeffs_g.a
34
35test_g_CXXFLAGS = -g -Wextra -Wall -pedantic -fdiagnostics-show-option -Wno-long-long
36
Note: See TracBrowser for help on using the repository browser.