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

spielwiese
Last change on this file since bfa04e was 1820e7, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
ADD: more unit tests via CxxTest and related changes FIX: NULLp for (void*)NULL + minor changes
  • Property mode set to 100644
File size: 2.0 KB
Line 
1lib_LIBRARIES=libcoeffs.a libcoeffs_g.a
2CXXTEMPLFLAGS      = -fno-implicit-templates --no-exceptions
3
4libcoeffs_a_CFLAGS   = -O3 -fomit-frame-pointer ${PIPE}
5libcoeffs_g_a_CFLAGS = ${PIPE}
6
7libcoeffs_a_CXXFLAGS   = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS}
8libcoeffs_g_a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS}
9# -fdiagnostics-show-option
10
11libcoeffs_a_CPPFLAGS   = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H
12libcoeffs_g_a_CPPFLAGS = -DHAVE_CONFIG_H
13
14
15include_HEADERS = coeffs.h numbers.h
16
17noinst_HEADERS= \
18        gnumpc.h gnumpfl.h longrat.h modulop.h ffields.h \
19        rintegers.h rmodulo2m.h rmodulon.h shortfl.h \
20        mpr_complex.h mpr_global.h
21
22INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${srcdir} ${GMP_CFLAGS}
23
24SOURCES = \
25        numbers.cc rintegers.cc rmodulo2m.cc rmodulon.cc shortfl.cc \
26        gnumpc.cc gnumpfl.cc longrat.cc longrat0.cc ffields.cc \
27        modulop.cc mpr_complex.cc
28libcoeffs_a_SOURCES   = $(SOURCES)
29libcoeffs_g_a_SOURCES = $(SOURCES)
30
31libcoeffs_a_includedir  =$(includedir)/libpolys/coeffs
32libcoeffs_g_a_includedir=$(includedir)/libpolys/coeffs
33
34COEFFSHEADERS  = coeffs.h numbers.h
35libcoeffs_a_include_HEADERS   = $(COEFFSHEADERS)
36libcoeffs_g_a_include_HEADERS = $(COEFFSHEADERS)
37
38
39
40## for testing...
41AM_LDFLAGS      = -L${top_builddir}/coeffs -L${top_builddir}/reporter -L${top_builddir}/resources -L${top_builddir}/misc -L${top_builddir}/../omalloc
42
43check_PROGRAMS = test test-g
44
45test_SOURCES   = test.cc
46test_g_SOURCES = test.cc
47
48test_LDADD   = -lcoeffs ${GMP_LIBS} -lresources -lreporter -lmisc -lomalloc
49test_g_LDADD = -lcoeffs_g ${GMP_LIBS} -lresources_g -lreporter_g -lmisc_g -lomalloc_debug
50
51
52
53test_CFLAGS   = -O3 -fomit-frame-pointer ${PIPE}
54test_g_CFLAGS = ${PIPE}
55
56test_CXXFLAGS   = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS}
57test_g_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS}
58# -fdiagnostics-show-option
59
60test_CPPFLAGS   = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H
61test_g_CPPFLAGS = -DHAVE_CONFIG_H
Note: See TracBrowser for help on using the repository browser.