1# $Id: Makefile.PL 2 2006-02-03 22:35:54Z taffy $
2
3use 5.008006;
4use ExtUtils::MakeMaker;
5# See lib/ExtUtils/MakeMaker.pm for details of how to influence
6# the contents of the Makefile that is written.
7WriteMakefile(
8    NAME              => 'Unix::Getrusage',
9    VERSION_FROM      => 'lib/Unix/Getrusage.pm', # finds $VERSION
10    PREREQ_PM         => {}, # e.g., Module::Name => 1.1
11    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
12      (ABSTRACT_FROM  => 'lib/Unix/Getrusage.pm', # retrieve abstract from module
13       AUTHOR         => 'User & <taffy@de.eu.taffy.nl>') : ()),
14    LIBS              => [''], # e.g., '-lm'
15    DEFINE            => '', # e.g., '-DHAVE_SOMETHING'
16    INC               => '-I.', # e.g., '-I. -I/usr/include/other'
17	# Un-comment this if you add C files to link with later:
18    # OBJECT            => '$(O_FILES)', # link all the C files too
19);
20