- or download this
# use Inline C => '<<HERE';
# becomes
use Module::Inline::C <<'HERE';
...
HERE
- or download this
# our $VERSION = '0.01';
# becomes
our $VERSION = '0.01';
BEGIN {$VERSION = '0.01'};
- or download this
use ExtUtils::MakeMaker;
...
PREOP => "perl -MModule::Inline::C::MM=\$(DISTNAME)-\$(VERSION
+) -c $module_file",
},
);
- or download this
perl Makefile.PL
make # compiles XS => so/dll into blib/
make test # doesn't use Inline!
make install # no more Inline for this module, ever.