Add a minimal Makefile.PL master
Florian Ragwitz [Wed, 1 Aug 2012 15:24:03 +0000 (11:24 -0400)]
Makefile.PL [new file with mode: 0644]

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',
+);