source: git/libpolys/coeffs/Makefile.am @ 630ca9

spielwiese
Last change on this file since 630ca9 was 630ca9, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
FIX: separate debug/optimized flags for resources and coeffs FIX: longrat.cc: missing "coeff" arguments!
  • Property mode set to 100644
File size: 1.9 KB
Line 
1lib_LIBRARIES=libcoeffs.a libcoeffs_g.a
2
3CXXTEMPLFLAGS      = -fno-implicit-templates --no-exceptions
4
5libcoeffs_a_CFLAGS   = -O3 -fomit-frame-pointer ${PIPE}
6libcoeffs_g_a_CFLAGS = ${PIPE}
7
8libcoeffs_a_CXXFLAGS   = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS}
9libcoeffs_g_a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS}
10# -fdiagnostics-show-option
11
12libcoeffs_a_CPPFLAGS   = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H
13libcoeffs_g_a_CPPFLAGS = -DHAVE_CONFIG_H
14
15
16include_HEADERS = coeffs.h numbers.h
17
18noinst_HEADERS= \
19        gnumpc.h gnumpfl.h longrat.h modulop.h ffields.h \
20        rintegers.h rmodulo2m.h rmodulon.h shortfl.h \
21        mpr_complex.h mpr_global.h
22
23INCLUDES = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/.. -I${srcdir}
24
25SOURCES = \
26        numbers.cc rintegers.cc rmodulo2m.cc rmodulon.cc shortfl.cc \
27        gnumpc.cc gnumpfl.cc longrat.cc longrat0.cc ffields.cc \
28        modulop.cc mpr_complex.cc
29libcoeffs_a_SOURCES   = $(SOURCES)
30libcoeffs_g_a_SOURCES = $(SOURCES)
31
32libcoeffs_a_includedir  =$(includedir)/libpolys/coeffs
33libcoeffs_g_a_includedir=$(includedir)/libpolys/coeffs
34
35COEFFSHEADERS  = coeffs.h numbers.h
36libcoeffs_a_include_HEADERS   = $(COEFFSHEADERS)
37libcoeffs_g_a_include_HEADERS = $(COEFFSHEADERS)
38
39
40
41## for testing...
42AM_LDFLAGS      = -L${top_builddir}/../coeffs -L${top_builddir}/../reporter -L${top_builddir}/../resources -L${top_builddir}/../../omalloc
43
44check_PROGRAMS = test test-g
45
46test_SOURCES   = test.cc
47test_g_SOURCES = test.cc
48
49test_LDADD   = libcoeffs.a -lresources -lreporter -lgmp -lomalloc
50test_g_LDADD = libcoeffs_g.a -lresources_g -lreporter_g -lgmp -lomalloc_debug
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.