Commit | Line | Data |
---|---|---|
c3398f5b | 1 | use inc::Module::Install; |
2 | ||
3 | name 'Mouse'; | |
4 | all_from 'lib/Mouse.pm'; | |
5 | ||
b9add211 | 6 | tests 't/*.t t/*/*.t'; |
7 | ||
eab81545 | 8 | build_requires 'Test::Exception'; |
9 | build_requires 'Sub::Uplevel'; # required by Test::Exception | |
c3398f5b | 10 | build_requires 'Test::More'; |
c3398f5b | 11 | |
654a7eeb | 12 | auto_include; |
c3398f5b | 13 | |
654a7eeb | 14 | WriteMakefile( |
15 | OBJECT => '$(O_FILES)', | |
16 | clean => { | |
17 | FILES => q{ | |
18 | *.stackdump | |
19 | *.gcov *.gcda *.gcno | |
20 | *.out | |
21 | nytprof | |
22 | cover_db | |
23 | }, | |
24 | }, | |
25 | ||
26 | ); |