1use 5.008;
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'		=> 'Readonly::XS',
7    'VERSION_FROM'	=> 'XS.pm', # finds $VERSION
8    'PREREQ_PM'		=> {Readonly => 1.02}, # e.g., Module::Name => 1.1
9    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
10      (AUTHOR     => 'Eric Roode <roode@cpan.org>') : ()),
11    'LIBS'		=> [''], # e.g., '-lm'
12    'DEFINE'		=> '', # e.g., '-DHAVE_SOMETHING'
13    'INC'		=> '-I.', # e.g., '-I. -I/usr/include/other'
14	# Un-comment this if you add C files to link with later:
15    # 'OBJECT'		=> '$(O_FILES)', # link all the C files too
16);
17