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