testcases/makefile: add modeline, add testsuite-* and latest to 'clean' target
This commit is contained in:
parent
71a3da1ef3
commit
27dadb4ad9
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env perl
|
#!/usr/bin/env perl
|
||||||
|
# vim:ts=4:sw=4:expandtab
|
||||||
use strict; use warnings;
|
use strict; use warnings;
|
||||||
use ExtUtils::MakeMaker;
|
use ExtUtils::MakeMaker;
|
||||||
|
|
||||||
|
@ -16,6 +17,9 @@ WriteMakefile(
|
||||||
},
|
},
|
||||||
# don't install any files from this directory
|
# don't install any files from this directory
|
||||||
PM => {},
|
PM => {},
|
||||||
|
clean => {
|
||||||
|
FILES => 'testsuite-* latest'
|
||||||
|
}
|
||||||
);
|
);
|
||||||
# and don't run the tests while installing
|
# and don't run the tests while installing
|
||||||
sub MY::test { }
|
sub MY::test { }
|
||||||
|
|
Loading…
Reference in New Issue