From 27dadb4ad9df2015e1730366144d967aed298e95 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Mon, 10 Oct 2011 21:56:43 +0100 Subject: [PATCH] testcases/makefile: add modeline, add testsuite-* and latest to 'clean' target --- testcases/Makefile.PL | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testcases/Makefile.PL b/testcases/Makefile.PL index da0c1570..60083667 100755 --- a/testcases/Makefile.PL +++ b/testcases/Makefile.PL @@ -1,4 +1,5 @@ #!/usr/bin/env perl +# vim:ts=4:sw=4:expandtab use strict; use warnings; use ExtUtils::MakeMaker; @@ -16,6 +17,9 @@ WriteMakefile( }, # don't install any files from this directory PM => {}, + clean => { + FILES => 'testsuite-* latest' + } ); # and don't run the tests while installing sub MY::test { }