ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/gde/Makefile.PL
Revision: 1.10
Committed: Wed Mar 15 19:05:39 2006 UTC (18 years, 2 months ago) by elmex
Content type: text/plain
Branch: MAIN
Changes since 1.9: +1 -1 lines
Log Message:
added inventory editor

File Contents

# Content
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 => 'bin/gce',
20 EXE_FILES => [qw(bin/gce)],
21 $pkg->get_makefile_vars,
22 PM => {
23 'GCE/AttrEdit.pm' => '$(INST_LIBDIR)/GCE/AttrEdit.pm',
24 'GCE/InventoryEditor.pm' => '$(INST_LIBDIR)/GCE/InventoryEditor.pm',
25 'GCE/AttrTypemap.pm' => '$(INST_LIBDIR)/GCE/AttrTypemap.pm',
26 'GCE/MainWindow.pm' => '$(INST_LIBDIR)/GCE/MainWindow.pm',
27 'GCE/StackView.pm' => '$(INST_LIBDIR)/GCE/StackView.pm',
28 'GCE/MapArch.pm' => '$(INST_LIBDIR)/GCE/MapArch.pm',
29 'GCE/MapEditor.pm' => '$(INST_LIBDIR)/GCE/MapEditor.pm',
30 'GCE/MapWindow.pm' => '$(INST_LIBDIR)/GCE/MapWindow.pm',
31 'GCE/PickWindow.pm' => '$(INST_LIBDIR)/GCE/PickWindow.pm',
32 'GCE/EditAction.pm' => '$(INST_LIBDIR)/GCE/EditAction.pm',
33 'GCE/Util.pm' => '$(INST_LIBDIR)/GCE/Util.pm',
34 # 'images/pick-tool.png' => '$(INST_LIBDIR)/GCE/images/pick-tool.png',
35
36 },
37 );
38
39
40