diff options
Diffstat (limited to 'source4/pidl/Makefile.PL')
-rwxr-xr-x | source4/pidl/Makefile.PL | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/source4/pidl/Makefile.PL b/source4/pidl/Makefile.PL index fa250cabc3..f5cd3e4eff 100755 --- a/source4/pidl/Makefile.PL +++ b/source4/pidl/Makefile.PL @@ -3,23 +3,13 @@ WriteMakefile( 'NAME' => 'Parse::Pidl', 'VERSION_FROM' => 'lib/Parse/Pidl.pm', 'EXE_FILES' => [ 'pidl' ], - 'PMLIBDIRS' => [ 'lib' ], '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 +lib/Parse/Pidl/IDL.pm: idl.yp + yapp -s -m 'Parse::Pidl::IDL' -o lib/Parse/Pidl/IDL.pm idl.yp -doc: pidl.1 pidl.1.html - -XSLTPROC=xsltproc - -%.1: %.1.xml - test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< - -%.html: %.xml - test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $< EOT } |