mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
cc6fae19ae
(This used to be commit fcc1ba97a3
)
16 lines
312 B
Perl
Executable File
16 lines
312 B
Perl
Executable File
use ExtUtils::MakeMaker;
|
|
WriteMakefile(
|
|
'NAME' => 'Parse::Pidl',
|
|
'VERSION_FROM' => 'lib/Parse/Pidl.pm',
|
|
'EXE_FILES' => [ 'pidl' ],
|
|
'test' => { 'TESTS' => 'tests/*.pl' }
|
|
);
|
|
|
|
sub MY::postamble {
|
|
<<'EOT';
|
|
lib/Parse/Pidl/IDL.pm: idl.yp
|
|
yapp -s -m 'Parse::Pidl::IDL' -o lib/Parse/Pidl/IDL.pm idl.yp
|
|
|
|
EOT
|
|
}
|