source: git/libpolys/coeffs/Makefile.am @ 014b65

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 
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
6lib_LIBRARIES=libcoeffs.a libcoeffs_g.a
7
8# normal C++ source files
9SOURCES = \
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
14libcoeffs_a_SOURCES = ${SOURCES}
15libcoeffs_g_a_SOURCES = ${SOURCES}
16
17libcoeffs_g_a_CXXFLAGS = -g -Wextra -Wall -pedantic -fdiagnostics-show-option -Wno-long-long
18
19noinst_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
24include_HEADERS = coeffs.h numbers.h
25
26## debug version:
27
28check_PROGRAMS=test test-g
29
30test_SOURCES=test.cc
31test_g_SOURCES=test.cc
32
33test_LDADD = -lreporter -lresources -lgmp -lomalloc_ndebug libcoeffs.a
34test_g_LDADD = -lreporter -lresources -lgmp -lomalloc_ndebug libcoeffs_g.a
35
36test_g_CXXFLAGS = -g -Wextra -Wall -pedantic -fdiagnostics-show-option -Wno-long-long
37
Note: See TracBrowser for help on using the repository browser.