File: Makefile.PL

package info (click to toggle)
libstring-approx-perl 3.28-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 328 kB
  • sloc: ansic: 1,338; perl: 411; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 604 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use ExtUtils::MakeMaker;

WriteMakefile(
	NAME		=> 'String::Approx',
	VERSION_FROM	=> 'Approx.pm',
	OBJECT		=> 'Approx.o apse.o',
#	CCFLAGS		=> '-DAPSE_DEBUGGING -g',
#	CCFLAGS		=> '-Wall -O -W -Waggregate-return -Wbad-function-cast -Wcast-align -Wcast-qual -Wconversion -Wendif-labels -Wfloat-equal -Wmissing-prototypes -Wmissing-noreturn -Wnested-externs -Wpointer-arith -Wredundant-decls -Wshadow -Wsign-compare -Wstrict-prototypes -Wwrite-strings -Wformat=2 -Wdisabled-optimization -ansi -pedantic',
	dist		=> { 'COMPRESS' => 'gzip' },
        PREREQ_PM       =>
	  {
	   'Test::More' => 0,
	  },
);