timeseries/Makefile.PL

14 lines
422 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,
},
2016-09-02 15:02:25 +02:00
'EXE_FILES' => [ 'tsplot', 'tsplotv', 'tsplotsql', 'top_n', 'tsfilter' ],
2003-03-03 12:54:09 +01:00
);