File: Makefile.PL

package info (click to toggle)
libclone-perl 0.18-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 96 kB
  • ctags: 34
  • sloc: perl: 222; makefile: 54
file content (14 lines) | stat: -rwxr-xr-x 550 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use ExtUtils::MakeMaker;
# $Id: Makefile.PL,v 0.14 2003/09/07 05:48:11 ray Exp $
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	=> 'Clone',
    'VERSION_FROM' => 'Clone.pm', # finds $VERSION
    'LIBS'	=> [''],   # e.g., '-lm' 
    'DEFINE'	=> '',     # e.g., '-DHAVE_SOMETHING' 
    'INC'	=> '',     # e.g., '-I/usr/include/other' 
#    'OPTIMIZE'	=> '-g',     # e.g., '-I/usr/include/other' 
    'OPTIMIZE'	=> '-O3',     # e.g., '-I/usr/include/other' 
);