Include Makefile.PL

This commit is contained in:
Duncan Ferguson 2010-06-20 20:58:06 +01:00
parent 7218c10758
commit 8ffed333a4
2 changed files with 26 additions and 0 deletions

View file

@ -24,3 +24,4 @@ t/boilerplate.t
t/pod-coverage.t
t/pod.t
THANKS
Makefile.PL

25
Makefile.PL Normal file
View file

@ -0,0 +1,25 @@
# Note: this file was auto-generated by Module::Build::Compat version 0.3603
use ExtUtils::MakeMaker;
WriteMakefile
(
'NAME' => 'App::ClusterSSH',
'VERSION_FROM' => 'lib/App/ClusterSSH.pm',
'PREREQ_PM' => {
'Locale::Maketext' => 0,
'Test::Pod' => 0,
'Test::Pod::Coverage' => 0,
'Test::Trap' => 0,
'Tk' => '800.022',
'X11::Protocol' => '0.56',
'version' => '0'
},
'INSTALLDIRS' => 'site',
'EXE_FILES' => [
'bin/crsh',
'bin/cscp',
'bin/cssh',
'bin/ctel'
],
'PL_FILES' => {}
)
;