Path: blob/master/tools/perf/scripts/perl/Perf-Trace-Util/Makefile.PL
10825 views
use 5.010000;1use ExtUtils::MakeMaker;2# See lib/ExtUtils/MakeMaker.pm for details of how to influence3# the contents of the Makefile that is written.4WriteMakefile(5NAME => 'Perf::Trace::Context',6VERSION_FROM => 'lib/Perf/Trace/Context.pm', # finds $VERSION7PREREQ_PM => {}, # e.g., Module::Name => 1.18($] >= 5.005 ? ## Add these new keywords supported since 5.0059(ABSTRACT_FROM => 'lib/Perf/Trace/Context.pm', # retrieve abstract from module10AUTHOR => 'Tom Zanussi <[email protected]>') : ()),11LIBS => [''], # e.g., '-lm'12DEFINE => '-I ../..', # e.g., '-DHAVE_SOMETHING'13INC => '-I.', # e.g., '-I. -I/usr/include/other'14# Un-comment this if you add C files to link with later:15OBJECT => 'Context.o', # link all the C files too16);171819