File: Makefile.PL

package info (click to toggle)
cricket 1.0.5-13
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,492 kB
  • ctags: 392
  • sloc: perl: 8,287; ansic: 328; sh: 168; makefile: 63; sql: 16
file content (14 lines) | stat: -rwxr-xr-x 588 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	=> 'LeanODBC',
    'VERSION_FROM' => 'LeanODBC.pm', # finds $VERSION
    'LIBS'	=> ['-lc:\vc98\lib\odbc32.lib -lc:\vc98\lib\kernel32.lib'],
    'DEFINE'	=> '',     # e.g., '-DHAVE_SOMETHING' 
    'INC'	=> '',     # e.g., '-I/usr/include/other' 
    ($] ge '5.005') ? (
        'AUTHOR' => 'Jake Brutlag (jakeb@corp.webtv.net)',
        'ABSTRACT' => 'Thin wrapper around a restricted set of the ODBC 3.x API',
    ) : (),
);