Key mangling, and elliptic curves.
[catacomb-perl] / Makefile.PL
index b53a393..88318e2 100644 (file)
@@ -1,6 +1,6 @@
 # -*-perl-*-
 #
-# $Id: Makefile.PL,v 1.1 2004/04/02 18:04:01 mdw Exp $
+# $Id$
 #
 # Makefile for Catacomb/Perl
 #
 # along with Catacomb/Perl; if not, write to the Free Software Foundation,
 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
-#----- Revision history -----------------------------------------------------
-#
-# $Log: Makefile.PL,v $
-# Revision 1.1  2004/04/02 18:04:01  mdw
-# Initial checkin.
-#
-
 use ExtUtils::MakeMaker;
 use Config;
 
@@ -42,13 +35,14 @@ WriteMakefile(NAME => "Catacomb",
              XS => { "catacomb.xs" => "catacomb.c" },
              OBJECT => join(" ", grep { s/$/$Config{_o}/ }
                                   @{[qw(algs mpstuff catacomb algstuff
-                                     pgproc utils)]}),
+                                        keystuff pgproc utils)]}),
              CONFIGURE => \&configure,
              PL_FILES => { 'algs.PL' => 'algs.c' },
              depend => { '$(MAKEFILE)' => '$(VERSION_FROM)',
                          'catacomb.c' =>
                            join(" ", grep { s/$/.xs/ }
-                                @{[qw(catacomb algorithms mp misc pgen)]})
+                                @{[qw(catacomb algorithms mp field ec
+                                      gf misc pgen key)]})
                        },
              VERSION_FROM => "Catacomb.pm");