This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Mention known sfio+linux buglet.
[perl5.git] / ext / Storable / Makefile.PL
CommitLineData
f0ffaed8 1# $Id: Makefile.PL,v 0.7.1.1 2000/08/23 22:49:18 ram Exp $
7a6a85bf
RG
2#
3# Copyright (c) 1995-2000, Raphael Manfredi
4#
5# You may redistribute only under the terms of the Artistic License,
6# as specified in the README file that comes with the distribution.
7#
8# $Log: Makefile.PL,v $
f0ffaed8
JH
9# Revision 0.7.1.1 2000/08/23 22:49:18 ram
10# patch3: added MAN3PODS
11#
7a6a85bf
RG
12# Revision 0.7 2000/08/03 22:04:44 ram
13# Baseline for second beta release.
14#
15
16use ExtUtils::MakeMaker;
17use Config;
18
19WriteMakefile(
20 'NAME' => 'Storable',
21 'DISTNAME' => "Storable",
a5fddd44 22 'MAN3PODS' => {},
7a6a85bf
RG
23 'VERSION_FROM' => 'Storable.pm',
24 'dist' => { SUFFIX => 'gz', COMPRESS => 'gzip -f' },
25 'clean' => {'FILES' => '*%'},
26);
27