File: Makefile.PL

package info (click to toggle)
libdigest-md4-perl 1.1-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 92 kB
  • ctags: 53
  • sloc: ansic: 221; perl: 217; makefile: 40
file content (13 lines) | stat: -rw-r--r-- 540 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
# $Id: Makefile.PL,v 1.1 2000/08/27 23:12:24 mikem Exp $
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	=> 'Digest::MD4',
    'VERSION_FROM' => 'MD4.pm', # finds $VERSION
    'LIBS'	=> [''],   # e.g., '-lm' 
    'CONFIG'	=> ['byteorder'],	# Used to determine 64-bitness
    'DEFINE'	=> '-DPERL_BYTEORDER=$(BYTEORDER)',
    'INC'	=> '',     # e.g., '-I/usr/include/other' 
    'OBJECT'	=> q[MD4$(OBJ_EXT) md4c$(OBJ_EXT)],
);