X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=b08b726e2ec4221fc31b0efe000fe811c8a14c43;hb=eae8075956ba01581ea7488b4ddb2506db1111da;hp=0d68d56f7e983c775b3fe8bb1dcab2544adde2af;hpb=429ce015fa73af2ce45773edf54c1f1fd4216a1b;p=gitmo%2FMouse.git diff --git a/Makefile.PL b/Makefile.PL index 0d68d56..b08b726 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,7 +3,24 @@ use inc::Module::Install; name 'Mouse'; all_from 'lib/Mouse.pm'; +tests 't/*.t t/*/*.t'; + +build_requires 'Test::Exception'; +build_requires 'Sub::Uplevel'; # required by Test::Exception build_requires 'Test::More'; -WriteAll; +auto_include; + +WriteMakefile( + OBJECT => '$(O_FILES)', + clean => { + FILES => q{ + *.stackdump + *.gcov *.gcda *.gcno + *.out + nytprof + cover_db + }, + }, +);