49270b32f1a3b9ffab04df11961b8db4957548bb
[p5sagit/p5-mst-13.2.git] / ext / Storable / Makefile.PL
1 # $Id: Makefile.PL,v 1.0.1.1 2001/01/03 09:38:39 ram Exp $
2 #
3 #  Copyright (c) 1995-2000, Raphael Manfredi
4 #  
5 #  You may redistribute only under the same terms as Perl 5, as specified
6 #  in the README file that comes with the distribution.
7 #
8 # $Log: Makefile.PL,v $
9 # Revision 1.0.1.1  2001/01/03 09:38:39  ram
10 # patch7: removed spurious 'clean' entry
11 #
12 # Revision 1.0  2000/09/01 19:40:41  ram
13 # Baseline for first official release.
14 #
15
16 use ExtUtils::MakeMaker;
17 use Config;
18
19 my @libs = ();
20 $Config{gccversion} eq "" or @libs = ('LIBS' => ["-lgcc"]);
21
22 WriteMakefile(
23     'NAME'              => 'Storable',
24     'DISTNAME'          => "Storable",
25     @libs,
26     'MAN3PODS'          => {},
27     'VERSION_FROM'      => 'Storable.pm',
28     'dist'                      => { SUFFIX => 'gz', COMPRESS => 'gzip -f' },
29 );
30