This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate mainline
[perl5.git] / lib / ExtUtils / t / Big-Fat-Dummy / Liar / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 my $mm = WriteMakefile(
4               NAME => 'Big::Fat::Liar',
5               VERSION_FROM => 'lib/Big/Fat/Liar.pm',
6               _KEEP_AFTER_FLUSH => 1
7              );
8
9 print "Big::Fat::Liar's vars\n";
10 foreach my $key (qw(INST_LIB INST_ARCHLIB)) {
11     print "$key = $mm->{$key}\n";
12 }