From 5a162488a1018d44b28475538bffeeef56b453b6 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 5 Jan 2007 20:13:48 +0000 Subject: r20562: Start building expr parser. Add separate copy of Yapp::Driver rather than including it in each individual parser. (This used to be commit 26853d7d99f7305981bcadaabfe6accf254321e7) --- source4/pidl/Makefile.PL | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'source4/pidl/Makefile.PL') diff --git a/source4/pidl/Makefile.PL b/source4/pidl/Makefile.PL index f5cd3e4eff..8167cfd6f8 100755 --- a/source4/pidl/Makefile.PL +++ b/source4/pidl/Makefile.PL @@ -3,13 +3,16 @@ WriteMakefile( 'NAME' => 'Parse::Pidl', 'VERSION_FROM' => 'lib/Parse/Pidl.pm', 'EXE_FILES' => [ 'pidl' ], - 'test' => { 'TESTS' => 'tests/*.pl' } + 'test' => { 'TESTS' => 'tests/*.pl' }, + 'PMLIBDIRS' => [ 'lib/Parse/Pidl'] ); 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 + 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 } -- cgit