Centralize MakeMaker customizations so they can be shared between dzil and dev-only...
[gitmo/Moose.git] / Makefile.PL
1 use strict;
2 use warnings;
3
4 use Config;
5 use ExtUtils::MakeMaker;
6
7 use lib 'inc';
8
9 use MMHelper;
10
11 warn <<'EOF';
12
13   ********************************* WARNING **********************************
14
15   This module uses Dist::Zilla for development. This Makefile.PL will let you
16   run the tests, but you are encouraged to install Dist::Zilla and the needed
17   plugins if you intend on doing any serious hacking.
18
19   ****************************************************************************
20
21 EOF
22
23 eval MMHelper::my_package_subs();
24
25 WriteMakefile(
26     NAME => 'Moose',
27     test => { TESTS => 't/*.t t/*/*.t' },
28     MMHelper::mm_args('dev'),
29 );