You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
404 B
Perl
18 lines
404 B
Perl
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 -m 'Parse::Pidl::IDL' -o lib/Parse/Pidl/IDL.pm idl.yp
|
|
|
|
lib/Parse/Pidl/Expr.pm: expr.yp
|
|
yapp -m 'Parse::Pidl::Expr' -o lib/Parse/Pidl/Expr.pm expr.yp
|
|
EOT
|
|
}
|