From: Vincent Pit Date: Sun, 29 Jun 2008 16:47:03 +0000 (+0200) Subject: Makefile.PL beautification. 'make clean' should remove coverage files X-Git-Tag: v0.11~16 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLinux-SysInfo.git;a=commitdiff_plain;h=3a672b897a59483dd4589f93a360dba6bf497b31 Makefile.PL beautification. 'make clean' should remove coverage files --- diff --git a/Makefile.PL b/Makefile.PL index 69df46f..76cd1a2 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -20,20 +20,20 @@ sub build_req { } WriteMakefile( - NAME => 'Linux::SysInfo', - AUTHOR => 'Vincent Pit ', - LICENSE => 'perl', - VERSION_FROM => 'lib/Linux/SysInfo.pm', - ABSTRACT_FROM => 'lib/Linux/SysInfo.pm', - PL_FILES => {}, - PREREQ_PM => { - 'Exporter' => 0, - 'XSLoader' => 0, + NAME => 'Linux::SysInfo', + AUTHOR => 'Vincent Pit ', + LICENSE => 'perl', + VERSION_FROM => 'lib/Linux/SysInfo.pm', + ABSTRACT_FROM => 'lib/Linux/SysInfo.pm', + PL_FILES => {}, + PREREQ_PM => { + 'Exporter' => 0, + 'XSLoader' => 0, }, - dist => { - PREOP => 'pod2text lib/Linux/SysInfo.pm > $(DISTVNAME)/README; ' - . build_req, - COMPRESS => 'gzip -9f', SUFFIX => 'gz', + dist => { + PREOP => 'pod2text lib/Linux/SysInfo.pm > $(DISTVNAME)/README; ' + . build_req, + COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, - clean => { FILES => 'Linux-SysInfo-*' }, + clean => { FILES => 'Linux-SysInfo-* *.gcov *.gcda *.gcno cover_db' }, );