1use ExtUtils::MakeMaker;
2# $Id: Makefile.PL,v 0.19 2007/10/15 04:57:20 ray Exp $
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
6    'NAME'	=> 'Clone',
7    'VERSION_FROM' => 'Clone.pm', # finds $VERSION
8    'LIBS'	=> [''],   # e.g., '-lm'
9    'DEFINE'	=> '',     # e.g., '-DHAVE_SOMETHING'
10    'INC'	=> '',     # e.g., '-I/usr/include/other'
11#    'OPTIMIZE'	=> '-g',     # e.g., '-I/usr/include/other'
12    'OPTIMIZE'	=> '-O3',     # e.g., '-I/usr/include/other'
13    clean => {FILES => '_Inline'},
14);
15
16