timeseries/Makefile.PL

14 lines
397 B
Makefile
Raw Normal View History

2003-03-03 12:54:09 +01:00
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,
},
2006-02-14 10:48:36 +01:00
'EXE_FILES' => [ 'tsplot', 'tsplotv', 'top_n' ],
2003-03-03 12:54:09 +01:00
);