1use ExtUtils::MakeMaker;
2
3WriteMakefile(
4              'NAME'      => 'XS::Typemap',
5              'VERSION_FROM'   => 'Typemap.pm',
6              'dist'      => { COMPRESS => "gzip -9f"},
7              OBJECT      => 'stdio.o  Typemap.o',
8	      ABSTRACT_FROM => 'Typemap.pm',
9	      AUTHOR     => 'Tim Jenness <t.jenness@jach.hawaii.edu>',
10);
11
12
13# Nothing to install (except maybe the XS::Typemap.xs documentation)
14
15sub MY::install { "install ::\n"  };
16