moved .xs file to correct place, test.pl removed
Matt S Trout [Wed, 27 Jun 2007 03:08:49 +0000 (03:08 +0000)]
Makefile.PL
lib/Devel/BeginLift.xs [moved from BeginLift.xs with 100% similarity]
test.pl [deleted file]

index 5c2e3cc..1ab8fa4 100644 (file)
@@ -5,4 +5,6 @@ license 'perl';
 author 'Matt S Trout';
 all_from 'lib/Devel/BeginLift.pm';
 
+makemaker_args(XS => { 'lib/Devel/BeginLift.xs' => 'lib/Devel/BeginList.c' });
+
 WriteMakefile;
similarity index 100%
rename from BeginLift.xs
rename to lib/Devel/BeginLift.xs
diff --git a/test.pl b/test.pl
deleted file mode 100644 (file)
index 8da537a..0000000
--- a/test.pl
+++ /dev/null
@@ -1,21 +0,0 @@
-use Devel::BeginLift 'foo';
-
-use vars qw($int);
-
-BEGIN { $int = 1 }
-
-sub foo { warn "foo: $_[0]\n"; $int++; 4; }
-
-sub bar { warn "bar: $_[0]\n"; }
-
-warn "yep\n";
-
-warn foo("foo");
-
-warn bar("bar");
-
-warn "yep2: $int\n";
-
-no Devel::BeginLift;
-
-foo();