The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# This Makefile.PL for Parse-Keyword was generated by
# inc::MakeMaker <self>
# and Dist::Zilla::Plugin::MakeMaker::Awesome 0.38.
# Don't edit it but the dist.ini and plugins used to construct it.

use strict;
use warnings;

use 5.014;
use ExtUtils::MakeMaker;

my %WriteMakefileArgs = (
  "ABSTRACT" => "DEPRECATED: write syntax extensions in perl",
  "AUTHOR" => "Jesse Luehrs <doy\@tozt.net>",
  "CONFIGURE_REQUIRES" => {
    "Devel::CallParser" => 0,
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "Parse-Keyword",
  "LICENSE" => "mit",
  "MIN_PERL_VERSION" => "5.014",
  "NAME" => "Parse::Keyword",
  "NORECURS" => 1,
  "PREREQ_PM" => {
    "Devel::CallParser" => 0,
    "XSLoader" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Carp" => 0,
    "Exporter" => 0,
    "File::Find" => 0,
    "File::Temp" => 0,
    "Test::More" => "0.88",
    "base" => 0,
    "if" => 0,
    "lib" => 0
  },
  "VERSION" => "0.09",
  "clean" => {
    "FILES" => "callparser1.h"
  },
  "test" => {
    "TESTS" => "t/*.t t/fun/*.t t/try/*.t"
  }
);

my %FallbackPrereqs = (
  "Carp" => 0,
  "Devel::CallParser" => 0,
  "Exporter" => 0,
  "File::Find" => 0,
  "File::Temp" => 0,
  "Test::More" => "0.88",
  "XSLoader" => 0,
  "base" => 0,
  "if" => 0,
  "lib" => 0,
  "strict" => 0,
  "warnings" => 0
);

unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };

use File::Spec::Functions 'abs2rel';
use Devel::CallParser 'callparser1_h', 'callparser_linkable';
open my $fh, '>', 'callparser1.h' or die "Couldn't write to callparser1.h";
$fh->print(callparser1_h);
my @linkable = map { abs2rel($_) } callparser_linkable;
unshift @linkable, '$(BASEEXT)$(OBJ_EXT)' if @linkable;
$WriteMakefileArgs{OBJECT} = join(' ', @linkable) if @linkable;

WriteMakefile(%WriteMakefileArgs);