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

数学计算

开发平台:

Unix_Linux

  1. ## Process this file with automake to generate Makefile.in
  2. # Copyright 2001, 2002, 2003, 2004 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. # LDADD has an explicit -L of $(top_builddir)/.libs for the benefit of gcc
  19. # 3.2 on itanium2-hp-hpux11.22.  Without this option, the libgmp.sl.6
  20. # required by libgmpxx.sl (ie. in its NEEDED records) is not found by the
  21. # linker.  FIXME: Presumably libtool should do something about this itself.
  22. #
  23. INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/tests
  24. LDADD = -L$(top_builddir)/.libs 
  25.   $(top_builddir)/tests/libtests.la 
  26.   $(top_builddir)/libgmpxx.la 
  27.   $(top_builddir)/libgmp.la
  28. if WANT_CXX
  29. check_PROGRAMS = t-assign t-binary t-cast t-constr t-headers 
  30.   t-istream t-locale t-misc t-ops t-ostream t-prec t-rand t-ternary t-unary
  31. TESTS = $(check_PROGRAMS)
  32. endif
  33. t_assign_SOURCES  = t-assign.cc
  34. t_binary_SOURCES  = t-binary.cc
  35. t_cast_SOURCES    = t-cast.cc
  36. t_constr_SOURCES  = t-constr.cc
  37. t_headers_SOURCES = t-headers.cc
  38. t_istream_SOURCES = t-istream.cc
  39. t_locale_SOURCES  = t-locale.cc clocale.c
  40. t_misc_SOURCES    = t-misc.cc
  41. t_ops_SOURCES     = t-ops.cc
  42. t_ostream_SOURCES = t-ostream.cc
  43. t_prec_SOURCES    = t-prec.cc
  44. t_rand_SOURCES    = t-rand.cc
  45. t_ternary_SOURCES = t-ternary.cc
  46. t_unary_SOURCES   = t-unary.cc
  47. $(top_builddir)/tests/libtests.la:
  48. cd $(top_builddir)/tests; $(MAKE) $(AM_MAKEFLAGS) libtests.la
  49. # Libtool (1.5) somehow botches its uninstalled shared library setups on
  50. # OpenBSD 3.2, making the C++ test programs here fail.  libgmpxx.so ends up
  51. # with a NEEDED record asking for ./.libs/libgmp.so.N, but the loader can't
  52. # find that unless it exists in the current directory.
  53. #
  54. # FIXME: Clearly libtool ought to handle this itself, in which case the hack
  55. # here can be removed.
  56. #
  57. # Note this fix applies only when running "make check".  The cp here should
  58. # be done manually if just one program is to be built and run.
  59. #
  60. TESTS_ENVIRONMENT = cp $(top_builddir)/.libs/libgmp.so.* .libs 2>/dev/null || true;