July 24, 2003 ModuleMaker Back Slide 10 Forward

Build System


use ExtUtils::ModuleMaker;

my $MOD = ExtUtils::ModuleMaker->new

            (

              NAME => 'Sample::Module',

              BUILD_SYSTEM => 'ExtUtils::MakeMaker',

#             BUILD_SYSTEM => 'Module::Build',

#             BUILD_SYSTEM => 'Module::Build and Proxy',

            );

$MOD->complete_build ();

  • Choose from the tried and true ExtUtils::MakeMaker or the new and recommended Module::Build
  • Generate Makefile.PL, Build.PL, or both


Copyright © 2001-2003 GlaxoSmithKline Back Contents Forward