1use ExtUtils::MakeMaker;
2
3my $opt = '-O3 -funroll-loops -fomit-frame-pointer -fschedule-insns2 -Os -fno-strength-reduce -Wall -pipe';
4
5WriteMakefile(
6    'NAME' => 'Crypt::Rabbit',
7    'VERSION_FROM' => 'Rabbit.pm',
8    'PREREQ_PM' => {},
9    'AUTHOR' => 'Julius C. Duque',
10    'LIBS' => [''],
11    'DEFINE' => '',
12    'INC' => '-I.',
13    'OPTIMIZE' => "-pipe -O2 -fno-strict-aliasing ",
14    'dist' => {'COMPRESS' => 'gzip -9f', 'SUFFIX' => 'gz'}
15);
16
17