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