diff options
author | Kevin Ryde <user42@zip.com.au> | 2000-04-29 22:16:31 +0200 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2000-04-29 22:16:31 +0200 |
commit | fbee06addc7e69b66145d8bde5132c30912b41ed (patch) | |
tree | beef6ad4814f4597c02b11bd841afb80e12a0fcf /tune | |
parent | 624ce119551a3a33a7fc5df23b57a207b9747c70 (diff) | |
download | gmp-fbee06addc7e69b66145d8bde5132c30912b41ed.tar.gz |
Tune GCD_ACCEL_THRESHOLD and GCDEXT_THRESHOLD.
Diffstat (limited to 'tune')
-rw-r--r-- | tune/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tune/Makefile.am b/tune/Makefile.am index 82d01ee87..f21608854 100644 --- a/tune/Makefile.am +++ b/tune/Makefile.am @@ -93,7 +93,7 @@ SUFFIXES = .asm SQR_GENERIC_MAX = 200 -LIBGMPTUNE_OBJS = mul_n.o mul.o bz_divrem_n.o tdiv_qr.o fib_ui.o +LIBGMPTUNE_OBJS = mul_n.o mul.o bz_divrem_n.o tdiv_qr.o fib_ui.o gcd.o gcdext.o sqr_basecase.h: libgmptune.a @@ -154,6 +154,12 @@ tdiv_qr.o: $(top_builddir)/mpn/tdiv_qr.c fib_ui.o: $(top_srcdir)/mpz/fib_ui.c $(COMPILE) $(THRESHOLDS) -c $(top_srcdir)/mpz/fib_ui.c +gcd.o: $(top_builddir)/mpn/gcd.c + $(COMPILE) $(THRESHOLDS) -c $(top_builddir)/mpn/gcd.c + +gcdext.o: $(top_builddir)/mpn/gcdext.c + $(COMPILE) $(THRESHOLDS) -c $(top_builddir)/mpn/gcdext.c + |