better accessor context descriptions in general
[gitmo/Moose.git] / Makefile.PL
index 0b9d0c3..36093c1 100644 (file)
@@ -1,29 +1,20 @@
 use strict;
 use warnings;
 
-use Config;
-use ExtUtils::MakeMaker;
+use ExtUtils::MakeMaker::Dist::Zilla::Develop;
 
 use lib 'inc';
 
 use MMHelper;
+use MyInline;
 
-warn <<'EOF';
-
-  ********************************* WARNING **********************************
-
-  This module uses Dist::Zilla for development. This Makefile.PL will let you
-  run the tests, but you are encouraged to install Dist::Zilla and the needed
-  plugins if you intend on doing any serious hacking.
-
-  ****************************************************************************
-
-EOF
+system( $^X, 'author/extract-inline-tests', '--quiet' );
 
 eval MMHelper::my_package_subs();
 
 WriteMakefile(
     NAME => 'Moose',
     test => { TESTS => 't/*.t t/*/*.t' },
-    MMHelper::mm_args(q{.}),
+    CCFLAGS => MMHelper::ccflags_static('dev'),
+    MMHelper::mm_args(),
 );