14 lines
368 B
Makefile
14 lines
368 B
Makefile
|
use ExtUtils::MakeMaker;
|
||
|
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
|
||
|
# the contents of the Makefile that is written.
|
||
|
WriteMakefile(
|
||
|
'NAME' => 'TimeSeries',
|
||
|
'VERSION_FROM' => 'TimeSeries.pm', # finds $VERSION
|
||
|
'PREREQ_PM' => {
|
||
|
'File::Temp' => 0,
|
||
|
'Time::Local' => 0,
|
||
|
'Data::Dumper' => 0,
|
||
|
},
|
||
|
'EXE_FILES' => [ ],
|
||
|
);
|