Warning, file /education/kstars/kstars/data/tools/HTMesh-0.01/Makefile.PL was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 use 5.008008;
0002 use ExtUtils::MakeMaker;
0003 
0004 $CC = 'g++';
0005 
0006 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
0007 # the contents of the Makefile that is written.
0008 WriteMakefile(
0009     NAME              => 'HTMesh',
0010     VERSION_FROM      => 'lib/HTMesh.pm', # finds $VERSION
0011     PREREQ_PM         => {}, # e.g., Module::Name => 1.1
0012     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
0013       (ABSTRACT_FROM  => 'lib/HTMesh.pm', # retrieve abstract from module
0014        AUTHOR         => 'James Bowlin <jbowlin@mindspring.com>') : ()),
0015     LIBS              => ['-lhtmesh'], # e.g., '-lm'
0016     DEFINE            => '', # e.g., '-DHAVE_SOMETHING'
0017     CC                => $CC,
0018     LD                => '$(CC)',
0019     INC               => '-I. -I../../../htmesh', 
0020     # Un-comment this if you add C files to link with later:
0021     # OBJECT            => '$(O_FILES)', # link all the C files too
0022     XSOPT             => '-C++',
0023     TYPEMAPS          => ['perlobject.map'],
0024 );