r9459: Move pidl up one level (to prevent too much nesting)
[samba.git] / source4 / pidl / Makefile.PL
1 use ExtUtils::MakeMaker;
2 WriteMakefile(
3     'NAME'      => 'Parse::Pidl',
4     'VERSION_FROM' => 'Parse/Pidl.pm',
5         'EXE_FILES' => [ 'pidl' ],
6         'PMLIBDIRS' => [ 'Parse' ],
7         'C' => [],
8         'test' => { 'TESTS' => 'tests/*.pl' }
9 );
10
11 sub MY::postamble {
12 <<'EOT';
13 Parse/Pidl/IDL.pm :: idl.yp
14         yapp -s -m 'Parse::Pidl::IDL' -o 'Parse/Pidl/IDL.pm' idl.yp
15 EOT
16 }