Yanor.net/
Wiki
Blog
GitHub
Sandbox
開始行:
* ExtUtils::MakeMaker [#f40742f2]
*** Makefile.PL [#e806b83a]
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Foo::Bar',
VERSION_FROM => 'lib/Foo/Bar.pm'
);
*** lib/Foo/Bar.pm [#j3addd14]
package Foo::Bar;
our $VERSION = '0.001';
1;
*** t/00_compile.t [#x744b4c9]
use strict;
use Test::More tests => 1;
use_ok('Foo::Bar');
** 参考 [#w3dbd8fe]
- http://search.cpan.org/perldoc?ExtUtils::MakeMaker::Tut...
- [[モダンPerlの世界へようこそ 第23回 Module::Build:Mak...
- [[モダンPerlの世界へようこそ 第25回 Module::Starter:...
終了行:
* ExtUtils::MakeMaker [#f40742f2]
*** Makefile.PL [#e806b83a]
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Foo::Bar',
VERSION_FROM => 'lib/Foo/Bar.pm'
);
*** lib/Foo/Bar.pm [#j3addd14]
package Foo::Bar;
our $VERSION = '0.001';
1;
*** t/00_compile.t [#x744b4c9]
use strict;
use Test::More tests => 1;
use_ok('Foo::Bar');
** 参考 [#w3dbd8fe]
- http://search.cpan.org/perldoc?ExtUtils::MakeMaker::Tut...
- [[モダンPerlの世界へようこそ 第23回 Module::Build:Mak...
- [[モダンPerlの世界へようこそ 第25回 Module::Starter:...
ページ名: