Makefile.am
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:3k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. ## Process this file with automake to generate Makefile.in
  2. # Copyright 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
  3. #
  4. # This file is part of the GNU MP Library.
  5. #
  6. # The GNU MP Library is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU Lesser General Public License as published by
  8. # the Free Software Foundation; either version 3 of the License, or (at your
  9. # option) any later version.
  10. #
  11. # The GNU MP Library is distributed in the hope that it will be useful, but
  12. # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  14. # License for more details.
  15. #
  16. # You should have received a copy of the GNU Lesser General Public License
  17. # along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  18. INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/tests
  19. LDADD = $(top_builddir)/tests/libtests.la $(top_builddir)/libgmp.la
  20. check_PROGRAMS = t-iset t-lc2exp t-mt t-rand t-urbui t-urmui t-urndmm
  21. TESTS = $(check_PROGRAMS)
  22. EXTRA_PROGRAMS = findlc gen gen.static spect stat
  23. gen_static_SOURCES = gen.c
  24. gen_static_LDFLAGS = -static
  25. findlc_LDADD = libstat.la
  26. spect_LDADD = libstat.la
  27. stat_LDADD = libstat.la
  28. EXTRA_LTLIBRARIES = libstat.la
  29. libstat_la_SOURCES = gmpstat.h statlib.c zdiv_round.c
  30. libstat_la_LIBADD = $(top_builddir)/libgmp.la $(LIBM)
  31. CLEANFILES = $(EXTRA_PROGRAMS) $(EXTRA_LTLIBRARIES)
  32. allprogs: $(EXTRA_PROGRAMS)
  33. $(top_builddir)/tests/libtests.la:
  34. cd $(top_builddir)/tests; $(MAKE) $(AM_MAKEFLAGS) libtests.la
  35. manual-test: gen$(EXEEXT) stat$(EXEEXT)
  36. @(echo -n '16i: '; ./gen -f mpz_urandomb -z 16 1000 
  37. | ./stat -i 0xffff | grep '^[0-9]')
  38. @(echo -n '32i: '; ./gen -f mpz_urandomb -z 32 1000 
  39. | ./stat -i 0xffffffff  | grep '^[0-9]')
  40. @(echo -n '33i: '; ./gen -f mpz_urandomb -z 33 1000 
  41. | ./stat -i 0x1ffffffff  | grep '^[0-9]')
  42. @(echo -n '64i: '; ./gen -f mpz_urandomb -z 64 1000 
  43. | ./stat -i 0xffffffffffffffff  | grep '^[0-9]')
  44. @(echo -n '128i: '; ./gen -f mpz_urandomb -z 128 1000 
  45. | ./stat -i 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF | grep '^[0-9]')
  46. @(echo -n '16f: '; ./gen -f mpf_urandomb -z 16 1000 
  47. | ./stat | grep '^[0-9]')
  48. @(echo -n '32f: '; ./gen -f mpf_urandomb -z 32 1000 
  49. | ./stat | grep '^[0-9]')
  50. @(echo -n '33f: '; ./gen -f mpf_urandomb -z 33 1000 
  51. | ./stat | grep '^[0-9]')
  52. @(echo -n '64f: '; ./gen -f mpf_urandomb -z 64 1000 
  53. | ./stat | grep '^[0-9]')
  54. @(echo -n '128f: '; ./gen -f mpf_urandomb -z 128 1000 
  55. | ./stat | grep '^[0-9]')
  56. manual-bigtest: gen$(EXEEXT) stat$(EXEEXT)
  57. @(echo '16i: '; ./gen -f mpz_urandomb -z 16 50000 
  58. | ./stat -2 1000 -i 0xffff | grep '^K[mp]')
  59. @(echo '32i: '; ./gen -f mpz_urandomb -z 32 50000 
  60. | ./stat -2 1000 -i 0xffffffff | grep '^K[mp]')
  61. @(echo '33i: '; ./gen -f mpz_urandomb -z 33 50000 
  62. | ./stat -2 1000 -i 0x1ffffffff | grep '^K[mp]')
  63. @(echo '64i: '; ./gen -f mpz_urandomb -z 64 50000 
  64. | ./stat -2 1000 -i 0xffffffffffffffff  | grep '^K[mp]')
  65. @(echo '128i: '; ./gen -f mpz_urandomb -z 128 50000 
  66. | ./stat -2 1000 -i 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF | grep '^K[mp]')
  67. @(echo '16f: '; ./gen -f mpf_urandomb -z 16 50000 
  68. | ./stat -2 1000 | grep '^K[mp]')
  69. @(echo '32f: '; ./gen -f mpf_urandomb -z 32 50000 
  70. | ./stat -2 1000 | grep '^K[mp]')
  71. @(echo '33f: '; ./gen -f mpf_urandomb -z 33 50000 
  72. | ./stat -2 1000 | grep '^K[mp]')
  73. @(echo '64f: '; ./gen -f mpf_urandomb -z 64 50000 
  74. | ./stat -2 1000 | grep '^K[mp]')
  75. @(echo '128f: '; ./gen -f mpf_urandomb -z 128 50000 
  76. | ./stat -2 1000 | grep '^K[mp]')