You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
779 B

use ExtUtils::MakeMaker;
sub MY::postamble {
my $postamble = <<'MAKE_FRAG';
.PHONY: tags
tags:
ctags -f tags --recurse --totals \
--exclude=blib \
--exclude='*~' \
--languages=Perl --langmap=Perl:+.t \
MAKE_FRAG
}
WriteMakefile(
NAME => 'ANTLR::Runtime',
VERSION_FROM => 'lib/ANTLR/Runtime.pm',
LICENSE => 'perl',
ABSTRACT_FROM => 'lib/ANTLR/Runtime.pm',
AUTHOR => 'Ronald Blaschke <ron@rblasch.org>',
PREREQ_PM => {
'Carp' => '1.04',
'Moose' => '0.82',
'Readonly' => '1.03',
'Test::Class' => '0.28',
},
test => { TESTS => 't/*.t t/examples/*.t' },
);