Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 use 5.010000;
0003 use ExtUtils::MakeMaker;
0004 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
0005 # the contents of the Makefile that is written.
0006 WriteMakefile(
0007     NAME              => 'Perf::Trace::Context',
0008     VERSION_FROM      => 'lib/Perf/Trace/Context.pm', # finds $VERSION
0009     PREREQ_PM         => {}, # e.g., Module::Name => 1.1
0010     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
0011       (ABSTRACT_FROM  => 'lib/Perf/Trace/Context.pm', # retrieve abstract from module
0012        AUTHOR         => 'Tom Zanussi <tzanussi@gmail.com>') : ()),
0013     LIBS              => [''], # e.g., '-lm'
0014     DEFINE            => '-I ../..', # e.g., '-DHAVE_SOMETHING'
0015     INC               => '-I.', # e.g., '-I. -I/usr/include/other'
0016     # Un-comment this if you add C files to link with later:
0017     OBJECT            => 'Context.o', # link all the C files too
0018 );