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

数学计算

开发平台:

Unix_Linux

  1. # Makefile for GMP perl module.
  2. # Copyright 2001, 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
  8. # by the Free Software Foundation; either version 3 of the License, or (at
  9. # your 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. # Bugs:
  19. #
  20. # When the generated Makefile re-runs "perl Makefile.PL" the GMP_BUILDDIR
  21. # parameter is lost.
  22. use ExtUtils::MakeMaker;
  23. # Find and remove our parameters
  24. @ARGV = map {
  25.   if (/^GMP_BUILDDIR=(.*)/) {
  26.     $GMP_BUILDDIR=$1; ();
  27.   } else {
  28.     $_;
  29.   }
  30. } (@ARGV);
  31. $INC = "";
  32. $LIBS = "-lgmp";
  33. $OBJECT = "GMP.o";
  34. if (defined $GMP_BUILDDIR) {
  35.   if (! -f "$GMP_BUILDDIR/libgmp.la") {
  36.     die "$GMP_BUILDDIR doesn't contain libgmp.lan" .
  37. "if it's really a gmp build directory then go there and run "make libgmp.la"n";
  38.   }
  39.   $INC = "-I$GMP_BUILDDIR $INC";
  40.   $LIBS = "-L$GMP_BUILDDIR/.libs $LIBS";
  41. }
  42. WriteMakefile(
  43.       NAME         => 'GMP',
  44.       VERSION      => '2.00',
  45.       LIBS         => [$LIBS],
  46.       OBJECT       => $OBJECT,
  47.       INC          => $INC,
  48.       clean        => { FILES => 'test.tmp' },
  49.       PM => {
  50. 'GMP.pm'      => '$(INST_LIBDIR)/GMP.pm',
  51. 'GMP/Mpz.pm'  => '$(INST_LIBDIR)/GMP/Mpz.pm',
  52. 'GMP/Mpq.pm'  => '$(INST_LIBDIR)/GMP/Mpq.pm',
  53. 'GMP/Mpf.pm'  => '$(INST_LIBDIR)/GMP/Mpf.pm',
  54. 'GMP/Rand.pm' => '$(INST_LIBDIR)/GMP/Rand.pm',
  55.       }
  56.       );
  57. # Local variables:
  58. # perl-indent-level: 2
  59. # End: