1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4
5my @pack = (["rout.pd", qw(Rout PDL::Graphics::TriD::Rout)]);
6my %hash = pdlpp_stdargs_int(@pack);
7$hash{LIBS} = ['-lm'];
8
9undef &MY::postamble; # suppress warning
10*MY::postamble = sub {
11	pdlpp_postamble_int(@pack);
12};
13
14WriteMakefile(%hash);
15