1 | ACLOCAL_AMFLAGS = -I ../../m4 |
---|
2 | |
---|
3 | # If Want_Debug |
---|
4 | # Lib_G=Libfac_G.La |
---|
5 | # Else |
---|
6 | # Lib_G= |
---|
7 | # Endif |
---|
8 | |
---|
9 | noinst_LTLIBRARIES=libfac.la |
---|
10 | # ${LIB_G} |
---|
11 | |
---|
12 | #CXXTEMPLFLAGS =-ftrapv ## -fno-implicit-templates |
---|
13 | |
---|
14 | #libfac_la_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} |
---|
15 | #libfac_g_la_CFLAGS = ${PIPE} |
---|
16 | |
---|
17 | #libfac_la_CXXFLAGS = -O3 -fomit-frame-pointer ${PIPE} ${CXXTEMPLFLAGS} |
---|
18 | #libfac_g_la_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS} |
---|
19 | # -fdiagnostics-show-option |
---|
20 | |
---|
21 | AM_CPPFLAGS = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -I${srcdir} -I${builddir} -I${srcdir}/.. -I${builddir}/.. -I${srcdir}/../include -I${builddir}/../include -I${srcdir}/factor -I${builddir}/factor -I${srcdir}/charset -I${builddir}/charset ${GMP_CFLAGS} ${NTL_CFLAGS} |
---|
22 | |
---|
23 | # libfac_la_CPPFLAGS = ${AM_CPPFLAGS} -DSING_NDEBUG -DOM_NDEBUG |
---|
24 | # libfac_la_CPPFLAGS = ${AM_CPPFLAGS} |
---|
25 | |
---|
26 | # libfac_la_LDFLAGS = -release ${PACKAGE_VERSION} |
---|
27 | |
---|
28 | FACTORSRC1 = factor/SqrFree.cc factor/Factor.cc \ |
---|
29 | factor/MVMultiHensel.cc factor/Truefactor.cc \ |
---|
30 | factor/helpstuff.cc factor/homogfactor.cc factor/version.c |
---|
31 | |
---|
32 | FACTORSRC2 = factor/tmpl_inst.cc |
---|
33 | |
---|
34 | FACTORSRC = $(FACTORSRC1) $(FACTORSRC2) |
---|
35 | |
---|
36 | |
---|
37 | CHARSETSRC1 = charset/csutil.cc charset/charset.cc charset/reorder.cc charset/alg_factor.cc charset/algfactor.cc |
---|
38 | |
---|
39 | CHARSETSRC = $(CHARSETSRC1) |
---|
40 | |
---|
41 | |
---|
42 | SOURCES = $(FACTORSRC) $(CHARSETSRC) |
---|
43 | |
---|
44 | noinst_HEADERS = factor/SqrFree.h factor/Factor.h \ |
---|
45 | factor/MVMultiHensel.h factor/Truefactor.h \ |
---|
46 | factor/helpstuff.h factor/homogfactor.h \ |
---|
47 | factor/class.h factor/debug.h factor/interrupt.h factor/timing.h \ |
---|
48 | factor/tmpl_inst.h \ |
---|
49 | charset/csutil.h charset/charset.h charset/reorder.h charset/alg_factor.h charset/algfactor.h |
---|
50 | |
---|
51 | libfac_la_SOURCES = $(SOURCES) |
---|
52 | # libfac_g_la_SOURCES = $(SOURCES) |
---|
53 | |
---|
54 | |
---|
55 | libfac_includedir=$(includedir)/factory/libfac |
---|
56 | |
---|
57 | libfac_include_HEADERS = libfac.h |
---|
58 | |
---|
59 | EXTRA_DIST = factor/class.cc \ |
---|
60 | factor/test.cc test.cc testcs.cc header.tpl \ |
---|
61 | charset/tests bin \ |
---|
62 | ChangeLog 00README |
---|
63 | |
---|
64 | |
---|
65 | |
---|