The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use ExtUtils::MakeMaker;

# If CLI is not installed, go quietly.
unless (-f "/usr/include/coptypes.h") {
   print "CLIv2 installation not found.\n";
##  exit 0;
}

WriteMakefile(
    'NAME'		=> 'Teradata::SQL',
    'VERSION_FROM'	=> 'SQL.pm', # finds $VERSION
    'PREREQ_PM'		=> {}, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
      ( AUTHOR     => 'Geoffrey Rommel <GROMMEL@cpan.org>',
        ABSTRACT   => 'Perl interface to Teradata SQL (CLIv2)') : ()),
##    'LIBS'		=> ["-L/opt/teradata/client/13.0/lib64 -ltdusr -lcliv2 -lnsl -lsocket"],
    'LIBS'		=> ["-ltdusr -lcliv2 -lnsl -lsocket"],
    'DEFINE'		=> '-DNO_CLIV2_ERROR_T', # e.g., '-DHAVE_SOMETHING'
    'C'			=> ['SQL.c', 'tdsql.c'] ,
    'INC'		=> '-I.', # e.g., '-I/usr/include/other'
    'OBJECT'		=> '$(O_FILES) tdsql.o',
    'LDFROM'		=> '$(O_FILES)',
);