1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
ACLOCAL_AMFLAGS = -I ../m4
SUBDIRS=include/factory
AM_CPPFLAGS = -I${builddir}/include -I${srcdir}/include -I${srcdir} \
$(OMALLOC_INCLUDES) $(RESOURCES_INCLUDES) \
$(FLINT_CFLAGS) $(NTL_CFLAGS) $(GMP_CFLAGS) $(SINGULAR_CFLAGS)
lib_LTLIBRARIES = libsingular-factory.la
libsingular_factory_la_LIBADD =$(RESOURCES_LIBS) $(OMALLOC_LIBS) \
$(FLINT_LIBS) $(NTL_LIBS) $(GMP_LIBS)
libsingular_factory_la_LDFLAGS = -release ${PACKAGE_VERSION}
# factory source files
SOURCES = \
canonicalform.cc \
cf_algorithm.cc \
cf_char.cc \
cfCharSets.cc \
cfCharSetsUtil.cc \
cf_chinese.cc \
cf_cyclo.cc \
cf_eval.cc \
cfEzgcd.cc \
cf_factor.cc \
cf_factory.cc \
cf_gcd.cc \
cfGcdAlgExt.cc \
cfGcdUtil.cc \
cf_generator.cc \
cf_globals.cc \
cf_hnf.cc \
cf_inline.cc \
cf_irred.cc \
cf_iter.cc \
cf_iter_inline.cc \
cf_linsys.cc \
cf_map.cc \
cf_map_ext.cc \
cfModGcd.cc \
cfNewtonPolygon.cc \
cfNTLzzpEXGCD.cc \
cfModResultant.cc \
cf_ops.cc \
cf_primes.cc \
cf_random.cc \
cf_resultant.cc \
cf_reval.cc \
cfSubResGcd.cc \
cf_switches.cc \
cf_util.cc \
cfUnivarGcd.cc \
debug.cc \
DegreePattern.cc \
ExtensionInfo.cc \
facAbsBiFact.cc \
facAbsFact.cc \
facAlgExt.cc \
facAlgFunc.cc \
facAlgFuncUtil.cc \
facBivar.cc \
facFactorize.cc \
fac_sqrfree.cc \
fac_util.cc \
facFqBivar.cc \
facFqBivarUtil.cc \
facFqFactorize.cc \
facFqFactorizeUtil.cc \
facFqSquarefree.cc \
facHensel.cc \
facIrredTest.cc \
facMul.cc \
facSparseHensel.cc \
ffops.cc \
FLINTconvert.cc \
gf_tabutil.cc \
gfops.cc \
imm.cc \
int_cf.cc \
int_int.cc \
int_intdiv.cc \
int_poly.cc \
int_rat.cc \
variable.cc \
NTLconvert.cc \
singext.cc \
parseutil.cc \
ftmpl_inst.cc
if WITH_PARSER_FOR_CANONICAL_FORM
SOURCES += readcf.yy
endif
libsingular_factory_la_SOURCES = $(SOURCES)
nodist_libsingular_factory_la_SOURCES = cplusplus.h factory.h factoryconf.h
# factory header files
factory_headers = \
cf_assert.h \
canonicalform.h \
cf_algorithm.h \
cfCharSets.h \
cfCharSetsUtil.h \
cf_cyclo.h \
cf_defs.h \
cf_eval.h \
cfEzgcd.h \
cf_factory.h \
cf_generator.h \
cf_globals.h \
cfGcdAlgExt.h \
cfGcdUtil.h \
cf_hnf.h \
cf_irred.h \
cf_iter.h \
cf_map.h \
cf_map_ext.h \
cfModGcd.h \
cfNewtonPolygon.h \
cfNTLzzpEXGCD.h \
cfModResultant.h \
cf_primes.h \
cf_primetab.h \
cf_random.h \
cf_reval.h \
cfSubResGcd.h \
cf_switches.h \
cf_util.h \
cfUnivarGcd.h \
debug.h \
DegreePattern.h \
ExtensionInfo.h \
facAbsBiFact.h \
facAbsFact.h \
facAlgExt.h \
facAlgFunc.h \
facAlgFuncUtil.h \
facBivar.h \
facFactorize.h \
fac_sqrfree.h \
fac_util.h \
facFqBivar.h \
facFqBivarUtil.h \
facFqFactorize.h \
facFqFactorizeUtil.h \
facFqSquarefree.h \
facHensel.h \
facIrredTest.h \
facMul.h \
facSparseHensel.h \
ffops.h \
FLINTconvert.h \
gf_tabutil.h \
gfops.h \
gmpext.h \
imm.h \
int_cf.h \
int_int.h \
int_poly.h \
int_rat.h \
timing.h \
variable.h \
NTLconvert.h \
singext.h \
parseutil.h
noinst_HEADERS = $(factory_headers)
configheaderdir = ${includedir}/$(DEB_HOST_MULTIARCH)/singular/factory
libsingular_factory_includedir = ${includedir}/singular/factory
nodist_configheader_HEADERS = factoryconf.h
nodist_libsingular_factory_include_HEADERS = cplusplus.h factory.h
####################################################
# Documentation
@DX_RULES@
####################################################
# the precomputed GF(q)-tables
gftablesdir=$(datadir)/singular/factory/gftables
dist_gftables_DATA = gftables/10201 gftables/1024 gftables/10609 gftables/11449 \
gftables/11881 gftables/121 gftables/12167 gftables/125 gftables/12769 \
gftables/128 gftables/1331 gftables/1369 gftables/14641 \
gftables/15625 gftables/16 gftables/16129 gftables/16384 \
gftables/16807 gftables/1681 gftables/169 gftables/17161 gftables/1849 \
gftables/18769 gftables/19321 gftables/19683 gftables/2048 \
gftables/2187 gftables/2197 gftables/2209 gftables/22201 \
gftables/22801 gftables/2401 gftables/243 gftables/24389 \
gftables/24649 gftables/25 gftables/256 gftables/26569 gftables/27 \
gftables/27889 gftables/2809 gftables/28561 gftables/289 \
gftables/29791 gftables/29929 gftables/3125 gftables/32 gftables/32041 \
gftables/32761 gftables/32768 gftables/343 gftables/3481 gftables/361 \
gftables/36481 gftables/3721 gftables/37249 gftables/38809 \
gftables/39601 gftables/4 gftables/4096 gftables/44521 gftables/4489 \
gftables/49 gftables/4913 gftables/49729 gftables/5041 \
gftables/50653 gftables/512 gftables/51529 gftables/52441 gftables/529 \
gftables/5329 gftables/54289 gftables/57121 gftables/58081 \
gftables/59049 gftables/6241 gftables/625 gftables/63001 \
gftables/64 gftables/6561 gftables/6859 gftables/6889 gftables/729 \
gftables/7921 gftables/8 gftables/81 gftables/8192 gftables/841 \
gftables/9 gftables/9409 gftables/961
####################################################
# Support for building GF(q)-tables
#
# gengftables needs libsingular-factory.la and factory.h AND is needed for
# generating gftable but the tables are not necessarily needed to
# compile and use libfactory (though it will be a lot slower).
EXTRA_PROGRAMS = gengftables
gengftables_SOURCES = gengftables-conway.cc
gengftables_LDADD = libsingular-factory.la $(FLINT_LIBS) $(GMP_LIBS) $(NTL_LIBS)
####################################################
# These files listed below are not used anywhere but are included in
# the distribution. So they will be tacked on to EXTRA_DIST.
templatesrc = templates/ftmpl_array.cc \
templates/ftmpl_afactor.cc \
templates/ftmpl_factor.cc \
templates/ftmpl_functions.h \
templates/ftmpl_list.cc \
templates/ftmpl_matrix.cc
# header templates
hdrtemplsrc = factoryconf.template \
factory.template
EXTRA_DIST = test_install.cc \
$(templatesrc) $(hdrtemplsrc) \
doxygen.cfg \
examples/application.cc \
examples/factorize.cc examples/gcd.cc \
bin/folding.el bin/fold-docu.el \
bin/makeheader bin/gen-readcf readcf.yy \
make_factory_dist
##################################################
# autogenerated sources
noinst_PROGRAMS = cplusplus
BUILT_SOURCES = cplusplus.h factory.h factoryconf.h
CLEANFILES = $(BUILT_SOURCES) include/factory/factory.h include/factory/factoryconf.h include/factory/cplusplus.h
DISTCLEANFILES = config.h readcf.cc
#distclean-local:
# -rm -f readcf.cc
cplusplus_SOURCES = cplusplus.cc
cplusplus.h: cplusplus$(EXEEXT)
./cplusplus$(EXEEXT) >$@
cp $@ include/factory/
.template.h:
${srcdir}/bin/makeheader $< $@
cp $@ include/factory/
# factory/gfops.cc has the gftables path hardcoded in, so we create a
# symlink. Remove this rule once gfopts.cc has been fixed. Note that
# check-local would run in parallel with check, so we can't use it
# here!
all-local:
[ -d ${builddir}/gftables ] || ln -s ${srcdir}/gftables ${builddir}
####################################################
## Test program
##
TESTS = test
check_PROGRAMS = $(TESTS)
test_SOURCES = test.cc
test_LDADD = libsingular-factory.la $(libsingular_factory_la_LIBADD)
####################################################
## PKG config
##
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = singular-factory.pc
|