Re: [patch] Hash::Util::FieldHash v1.02
[p5sagit/p5-mst-13.2.git] / ext / Hash / Util / FieldHash / Makefile.PL
CommitLineData
1e73acc8 1use 5.009004;
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
6 NAME => 'Hash::Util::FieldHash',
7 VERSION_FROM => 'lib/Hash/Util/FieldHash.pm', # finds $VERSION
8 PREREQ_PM => {}, # e.g., Module::Name => 1.1
1e73acc8 9 ($] >= 5.005 ? ## Add these new keywords supported since 5.005
c418a2d4 10 (ABSTRACT_FROM => 'lib/Hash/Util/FieldHash.pm',
a607227a 11 AUTHOR => 'Anno Siegel <anno4000@zrz.tu-berlin.de>') : ()),
1e73acc8 12 LIBS => [''], # e.g., '-lm'
13 DEFINE => '', # e.g., '-DHAVE_SOMETHING'
a607227a 14 # Insert -I. if you add *.h files later:
1e73acc8 15 INC => '', # e.g., '-I/usr/include/other'
a607227a 16 # Un-comment this if you add C files to link with later:
1e73acc8 17 # OBJECT => '$(O_FILES)', # link all the C files too
a607227a 18 # Don't manify in core build
19 (grep( /^PERL_CORE=1$/, @ARGV) ?
20 (MAN3PODS => {}) :
21 ()),
1e73acc8 22);