use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.


sub MY::post_initialize
{
  my($self) = shift;
  $self->{PM}->{'Exception.h'} = '$(INST_LIBDIR)/Experimental/Exception/Exception.h';
  $self->{PM}->{'Exception$(OBJ_EXT)'} = 
     '$(INST_ARCHLIBDIR)/Experimental/Exception/Exception$(OBJ_EXT)';
  '';
}

WriteMakefile(
    'NAME'	=> 'Experimental::Exception',
    'VERSION_FROM' => 'Exception.pm', # finds $VERSION
    'LIBS'	=> [''],   # e.g., '-lm' 
    'DEFINE'	=> '-DPERL_POLLUTE=1',
    'INC'	=> '',     # e.g., '-I/usr/include/other' 
    'linkext'   => {LINKTYPE => ''}
);
