ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/gde/Makefile.PL
Revision: 1.3
Committed: Thu Feb 9 15:45:52 2006 UTC (18 years, 3 months ago) by elmex
Content type: text/plain
Branch: MAIN
Changes since 1.2: +2 -0 lines
Log Message:
improved attribute editor

File Contents

# User Rev Content
1 elmex 1.1 require 5.008;
2    
3     use ExtUtils::MakeMaker;
4     use ExtUtils::Depends;
5    
6     my $pkg = new ExtUtils::Depends ();
7    
8     WriteMakefile(
9     dist => {
10     COMPRESS => 'gzip -9v',
11     SUFFIX => '.gz',
12     },
13     PREREQ_PM => {
14     # Crossfire => 0.1,
15     Gtk2 => 1.08,
16     },
17     DIR => [],
18     NAME => 'GCE',
19     VERSION_FROM => 'gce',
20     EXE_FILES => [qw(gce)],
21     $pkg->get_makefile_vars,
22     PM => {
23     'GCE/AttrEdit.pm' => '$(INST_LIBDIR)/GCE/AttrEdit.pm',
24 elmex 1.3 'GCE/AttrList.pm' => '$(INST_LIBDIR)/GCE/AttrList.pm',
25     'GCE/AttrTypemap.pm' => '$(INST_LIBDIR)/GCE/AttrTypemap.pm',
26 elmex 1.1 'GCE/MainWindow.pm' => '$(INST_LIBDIR)/GCE/MainWindow.pm',
27     'GCE/MapArch.pm' => '$(INST_LIBDIR)/GCE/MapArch.pm',
28     'GCE/MapWindow.pm' => '$(INST_LIBDIR)/GCE/MapWindow.pm',
29     'GCE/PickWindow.pm' => '$(INST_LIBDIR)/GCE/PickWindow.pm',
30     },
31     );
32    
33    
34