~ubuntu-branches/ubuntu/lucid/pdl/lucid

« back to all changes in this revision

Viewing changes to IO/NDF/Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Ben Gertzfield
  • Date: 2002-04-08 18:47:16 UTC
  • Revision ID: james.westby@ubuntu.com-20020408184716-0hf64dc96kin3htp
Tags: upstream-2.3.2
ImportĀ upstreamĀ versionĀ 2.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use ExtUtils::MakeMaker;
 
2
 
 
3
# # See lib/ExtUtils/MakeMaker.pm for details of how to influence
 
4
# # the contents of the Makefile that is written.
 
5
 
 
6
WriteMakefile(
 
7
              NAME => 'PDL::IO::NDF',
 
8
              PM  => { 'NDF.pm' => '$(INST_LIBDIR)/NDF.pm' },
 
9
#     'VERSION_FROM' => 'NDF.pm',
 
10
              clean => { FILES => 'NDF.pm' },
 
11
);
 
12
 
 
13
# try and get NDF.pm to be re-created if Basic/Core/badsupport.p is changed
 
14
#
 
15
sub MY::postamble {
 
16
"NDF.pm :: NDF.pm.PL ../../Basic/Core/badsupport.p
 
17
\t\$(PERL) -I\$(INST_ARCHLIB) -I\$(INST_LIB) -I\$(PERL_ARCHLIB) -I\$(PERL_LIB) NDF.pm.PL NDF.pm
 
18
 
 
19
";
 
20
}
 
21