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