Add a minimal Makefile.PL
[p5sagit/Gather-Once.git] / Makefile.PL
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..b71a81a
--- /dev/null
@@ -0,0 +1,18 @@
+use strict;
+use warnings;
+use Devel::CallParser;
+use Devel::CallChecker;
+use IO::File;
+use ExtUtils::MakeMaker;
+
+IO::File->new('callchecker0.h', 'w')->print(
+    Devel::CallChecker::callchecker0_h,
+);
+
+IO::File->new('callparser.h', 'w')->print(
+    Devel::CallParser::callparser0_h,
+);
+
+WriteMakefile(
+    NAME => 'Gather::Once',
+);