#!/usr/bin/perl -w

use 5.00307;
use strict;

use File::Spec        qw( );
use Getopt::Long 2.19 qw( GetOptions );

my $DEBUG;
my $prefix;
GetOptions ('debug'    => \$DEBUG,
            'prefix=s' => \$prefix,)
  or die "Options parsing failed";

warn "Building with perl: $^X\n";

use constant MOD_REQS =>
  [
  ];

use constant EXEC_REQS => [ ];

use constant NAME         => 'Class-MethodMaker';
use constant VERSION_FROM =>
  File::Spec->catfile(qw( lib Class MethodMaker.pm ));
use constant AUTHOR       => 'Martyn J. Pearce ';
use constant ABSTRACT     => 'a module for creating generic methods';
sub          PREFIX       {   $prefix }

use FindBin 1.42 qw( $Bin );
use lib $Bin;
use lib '.';
require 'make-pm';
