]> git.vpit.fr Git - perl/modules/Linux-SysInfo.git/commitdiff
Makefile.PL beautification. 'make clean' should remove coverage files
authorVincent Pit <vince@profvince.com>
Sun, 29 Jun 2008 16:47:03 +0000 (18:47 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 29 Jun 2008 16:47:03 +0000 (18:47 +0200)
Makefile.PL

index 69df46f6691b65c2dc19bf6f200b31b7579566b6..76cd1a2f961499e8d0000ac9ad6617b91717acca 100644 (file)
@@ -20,20 +20,20 @@ sub build_req {
 }
 
 WriteMakefile(
-    NAME                => 'Linux::SysInfo',
-    AUTHOR              => 'Vincent Pit <perl@profvince.com>',
-    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 <perl@profvince.com>',
+    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' },
 );