File: Makefile.PL

package info (click to toggle)
libace-perl 1.92-12
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,012 kB
  • sloc: perl: 7,763; ansic: 7,420; makefile: 81
file content (14 lines) | stat: -rw-r--r-- 468 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use ExtUtils::MakeMaker;
use Config;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

WriteMakefile(
	      'NAME'	     => 'Ace::Freesubs',
	      'VERSION_FROM' => 'Freesubs.pm', # finds $VERSION
	      'LIBS'         => ['-lc'],
	      'DEFINE'	     => '',
	      'OBJECT'       => '$(O_FILES)',
	      'XS'           => { 'Freesubs.xs'  => 'Freesubs.c' },
	      'XSPROTOARG'   => '-noprototypes',
);