ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra/Makefile.PL
Revision: 1.1
Committed: Sat Feb 4 23:56:14 2006 UTC (18 years, 3 months ago) by elmex
Content type: text/plain
Branch: MAIN
Log Message:
added makefile

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 use Config;
4
5 my $mm = MM->new({
6 dist => {
7 COMPRESS => 'gzip -9v',
8 SUFFIX => '.gz',
9 },
10 NAME => "Crossfire",
11 VERSION_FROM => "Crossfire.pm",
12 });
13
14 $mm->flush;
15