- or download this
use lib '.';
use vars '%module';
...
# Loaded from Makefile.PL
%module = get_module_info();
my $module = $module{NAME};
- or download this
perl -M-lib=. Makefile.PL && make && make test
- or download this
# Windows syntax:
set PERL5OPT=-M-lib=.
perl Makefile.PL && dmake && prove -bl xt t
- or download this
@rem Shell syntax:
export PERL5OPT=-M-lib=.
perl Makefile.PL && make && prove -bl xt t