makefile.pl

来自「聚类分析的源码集」· PL 代码 · 共 21 行

PL
21
字号
use ExtUtils::MakeMaker;use Config;use POSIX qw(uname);#$Verbose=1;WriteMakefile(	NAME		=> 'Algorithm::Cluster',	DISTNAME	=> 'Algorithm-Cluster',	AUTHOR		=> 'John Nolan and Michiel de Hoon',	ABSTRACT	=> 'Perl interface to the C Clustering Library',	VERSION_FROM	=> 'Cluster.pm',	PM		=> 		{			'Cluster.pm' =>	'$(INST_LIBDIR)/Cluster.pm',		},	LIBS		=> '-lm',	INC		=> '-I../src -I../ranlib/src',	MYEXTLIB	=> '../src/libcluster$(LIB_EXT)',);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?