1#! /usr/local/bin/perl
2
3use ExtUtils::MakeMaker;
4# See lib/ExtUtils/MakeMaker.pm for details of how to influence
5# the contents of the Makefile being created.
6
7require 5.004;
8
9WriteMakefile(
10	'NAME' => 'Crypt::DES',
11	'DISTNAME' => 'Crypt-DES',
12	'VERSION_FROM' => 'DES.pm',,
13	'OBJECT' => 'DES.o _des.o',
14	'dist'   => {COMPRESS=>'gzip', SUFFIX=>'gz'}
15);
16
17