summaryrefslogtreecommitdiff
path: root/ext/Encode/Makefile.PL
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-09-13 14:18:39 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-09-13 14:18:39 +0000
commit2c674647e4cd32dc05dd268c2de5090815265695 (patch)
tree85789e2b80dd80aa9f617e9758594d1f4c5deef7 /ext/Encode/Makefile.PL
parentd0d1d9b9406c0402a9e154640146d087c367cd8a (diff)
downloadperl-2c674647e4cd32dc05dd268c2de5090815265695.tar.gz
Add the Encode extension. The code is still largely just skeleton.
p4raw-id: //depot/perl@7068
Diffstat (limited to 'ext/Encode/Makefile.PL')
-rw-r--r--ext/Encode/Makefile.PL11
1 files changed, 11 insertions, 0 deletions
diff --git a/ext/Encode/Makefile.PL b/ext/Encode/Makefile.PL
new file mode 100644
index 0000000000..329937e0e2
--- /dev/null
+++ b/ext/Encode/Makefile.PL
@@ -0,0 +1,11 @@
+use ExtUtils::MakeMaker;
+WriteMakefile(
+ NAME => "Encode",
+ VERSION_FROM => 'Encode.pm',
+ 'dist' => {
+ COMPRESS => 'gzip -9f',
+ SUFFIX => 'gz',
+ DIST_DEFAULT => 'all tardist',
+ },
+ MAN3PODS => {},
+);