summaryrefslogtreecommitdiff
path: root/demos/perl
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2003-12-09 21:03:36 +0100
committerKevin Ryde <user42@zip.com.au>2003-12-09 21:03:36 +0100
commitdf02a9056955fa5ca469a6212c44f4e878359ee8 (patch)
tree4b69b32e338b7774d69df71870125d8a595c94b7 /demos/perl
parent95c614867b4afe750fa6390c8055515eaf4323f2 (diff)
downloadgmp-df02a9056955fa5ca469a6212c44f4e878359ee8.tar.gz
* demos/perl/Makefile.PL: Don't install sample.pl and test2.pl.
Diffstat (limited to 'demos/perl')
-rw-r--r--demos/perl/Makefile.PL9
1 files changed, 8 insertions, 1 deletions
diff --git a/demos/perl/Makefile.PL b/demos/perl/Makefile.PL
index 3d917c4b5..6fefd77c6 100644
--- a/demos/perl/Makefile.PL
+++ b/demos/perl/Makefile.PL
@@ -1,6 +1,6 @@
# Makefile for GMP perl module.
-# Copyright 2001 Free Software Foundation, Inc.
+# Copyright 2001, 2003 Free Software Foundation, Inc.
#
# This file is part of the GNU MP Library.
#
@@ -58,6 +58,13 @@ WriteMakefile(
OBJECT => $OBJECT,
INC => $INC,
clean => { FILES => 'test.tmp' },
+ PM => {
+ 'GMP.pm' => '$(INST_LIBDIR)/GMP.pm',
+ 'GMP/Mpz.pm' => '$(INST_LIBDIR)/GMP/Mpz.pm',
+ 'GMP/Mpq.pm' => '$(INST_LIBDIR)/GMP/Mpq.pm',
+ 'GMP/Mpf.pm' => '$(INST_LIBDIR)/GMP/Mpf.pm',
+ 'GMP/Rand.pm' => '$(INST_LIBDIR)/GMP/Rand.pm',
+ }
);