X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb-perl/blobdiff_plain/660b443cc58d4dd4e92730104429fb64d78c7075..ef3af890207c78e8352e850ed9fd510c10f7db56:/Makefile.PL diff --git a/Makefile.PL b/Makefile.PL index b53a393..88318e2 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,6 @@ # -*-perl-*- # -# $Id: Makefile.PL,v 1.1 2004/04/02 18:04:01 mdw Exp $ +# $Id$ # # Makefile for Catacomb/Perl # @@ -25,13 +25,6 @@ # 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");