forked from open-mpi/mtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
29 lines (26 loc) · 845 Bytes
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env perl
#
# Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
use ExtUtils::MakeMaker;
my $file = "lib/MTT/Version.pm";
my $version = "unknown";
if (-f $file) {
require $file;
$version = $MTT::Version::Combined;
}
WriteMakefile(
ABSTRACT => 'MPI Testing Tool',
NAME => 'MTT',
VERSION => $version,
PREREQ_PM => { 'Env::Modulecmd' => 0,
'Config::IniFiles' => 0,
'Text::TabularDisplay' => 0,
},
EXE_FILES => [ "client/mtt", "client/mtt-lock-server", "client/mtt-relay", "client/mtt-submit", "client/whatami/whatami" ],
);