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.
6WriteMakefile(
7	'NAME' => 'Math::TrulyRandom',
8	'DISTNAME' => 'Math-TrulyRandom',
9	'VERSION' => '1.0',
10	'OBJECT' => 'TrulyRandom.o truerand.o',
11	'dist'   => {COMPRESS=>'gzip', SUFFIX=>'gz'}
12);
13