Add a minimal Makefile.PL
[p5sagit/Gather-Once.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use Devel::CallParser;
4 use Devel::CallChecker;
5 use IO::File;
6 use ExtUtils::MakeMaker;
7
8 IO::File->new('callchecker0.h', 'w')->print(
9     Devel::CallChecker::callchecker0_h,
10 );
11
12 IO::File->new('callparser.h', 'w')->print(
13     Devel::CallParser::callparser0_h,
14 );
15
16 WriteMakefile(
17     NAME => 'Gather::Once',
18 );