aboutsummaryrefslogtreecommitdiff
path: root/ACME-Bare-Metal/Makefile.PL
diff options
context:
space:
mode:
authorDrahflow <drahflow@gmx.de>2012-12-22 18:16:58 +0100
committerDrahflow <drahflow@gmx.de>2012-12-22 18:16:58 +0100
commitaffeeb43b4ffc136a67efd11ff712b7f142266be (patch)
tree205115568365f6e056d511e0e885f5d07913910d /ACME-Bare-Metal/Makefile.PL
parentf20e50a4e3ac3aeeac84358a68c253358f213667 (diff)
ACME::Bare::Metal Perl x86 code executor
Diffstat (limited to 'ACME-Bare-Metal/Makefile.PL')
-rw-r--r--ACME-Bare-Metal/Makefile.PL17
1 files changed, 17 insertions, 0 deletions
diff --git a/ACME-Bare-Metal/Makefile.PL b/ACME-Bare-Metal/Makefile.PL
new file mode 100644
index 0000000..57fae66
--- /dev/null
+++ b/ACME-Bare-Metal/Makefile.PL
@@ -0,0 +1,17 @@
+use 5.014002;
+use ExtUtils::MakeMaker;
+# See lib/ExtUtils/MakeMaker.pm for details of how to influence
+# the contents of the Makefile that is written.
+WriteMakefile(
+ NAME => 'ACME::Bare::Metal',
+ VERSION_FROM => 'lib/ACME/Bare/Metal.pm', # finds $VERSION
+ PREREQ_PM => {}, # e.g., Module::Name => 1.1
+ ($] >= 5.005 ? ## Add these new keywords supported since 5.005
+ (ABSTRACT_FROM => 'lib/ACME/Bare/Metal.pm', # retrieve abstract from module
+ AUTHOR => 'A. U. Thor <drahflow@>') : ()),
+ LIBS => [''], # e.g., '-lm'
+ DEFINE => '', # e.g., '-DHAVE_SOMETHING'
+ INC => '-I.', # e.g., '-I. -I/usr/include/other'
+ # Un-comment this if you add C files to link with later:
+ # OBJECT => '$(O_FILES)', # link all the C files too
+);