source: git/libpolys/coeffs/Makefile.am @ bf5914

spielwiese
Last change on this file since bf5914 was bf5914, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
FIX: -fdiagnostics-show-option is not supported by gcc 4.0.1 (standard under Mac OS X 10.5)
  • 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 -Wno-long-long
17# -fdiagnostics-show-option
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 = libcoeffs.a -lresources -lreporter -lgmp -lomalloc
33test_g_LDADD = libcoeffs_g.a -lresources -lreporter -lgmp -lomalloc_debug
34
35test_g_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long
36#  -fdiagnostics-show-option
Note: See TracBrowser for help on using the repository browser.