The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	=> 'Db::Ctree',
    'VERSION_FROM' => 'Ctree.pm', # finds $VERSION
    'LIBS'	=> [''],
    'DEFINE'	=> '',     # e.g., '-DHAVE_SOMETHING' 
    'INC'	=> '-I/usr/faircom/ctree/include -I/usr/faircom/ctree/custom ',
    'LDFROM'	=> '$(OBJECT) /usr/faircom/lib/libctloclib.a',
    'PM'        =>  {'Ctree.pm'  => '$(INST_LIBDIR)/Ctree.pm',
                     'Ctport.ph' => '$(INST_LIB)/Ctport.ph',
                     'Cterrc.ph' => '$(INST_LIB)/Cterrc.ph'}
);