ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/gde/Makefile.PL
Revision: 1.18.2.1
Committed: Mon Dec 21 15:51:29 2009 UTC (14 years, 5 months ago) by elmex
Content type: text/plain
Branch: cursor
Changes since 1.18: +2 -2 lines
Log Message:
rewrote main parts in internal reference handling.

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 Deliantra => 1.23,
15 Glib => 0,
16 Gtk2 => 1.08,
17 'Object::Event' => 1.21,
18 },
19 DIR => [],
20 NAME => 'GCE',
21 VERSION_FROM => 'bin/gde',
22 EXE_FILES => [qw(bin/gde)],
23 $pkg->get_makefile_vars,
24 PM => {
25 'GCE/AttrEdit.pm' => '$(INST_LIBDIR)/GCE/AttrEdit.pm',
26 'GCE/InventoryEditor.pm' => '$(INST_LIBDIR)/GCE/InventoryEditor.pm',
27 'GCE/StackRef.pm' => '$(INST_LIBDIR)/GCE/StackRef.pm',
28 'GCE/DragHelper.pm' => '$(INST_LIBDIR)/GCE/DragHelper.pm',
29 'GCE/MainWindow.pm' => '$(INST_LIBDIR)/GCE/MainWindow.pm',
30 'GCE/HashDialog.pm' => '$(INST_LIBDIR)/GCE/HashDialog.pm',
31 'GCE/StackView.pm' => '$(INST_LIBDIR)/GCE/StackView.pm',
32 'GCE/MapArch.pm' => '$(INST_LIBDIR)/GCE/MapArch.pm',
33 'GCE/MapEditor.pm' => '$(INST_LIBDIR)/GCE/MapEditor.pm',
34 'GCE/MapWindow.pm' => '$(INST_LIBDIR)/GCE/MapWindow.pm',
35 'GCE/AttachEditor.pm' => '$(INST_LIBDIR)/GCE/AttachEditor.pm',
36 'GCE/PickWindow.pm' => '$(INST_LIBDIR)/GCE/PickWindow.pm',
37 'GCE/EditAction.pm' => '$(INST_LIBDIR)/GCE/EditAction.pm',
38 'GCE/Util.pm' => '$(INST_LIBDIR)/GCE/Util.pm',
39 # 'images/pick-tool.png' => '$(INST_LIBDIR)/GCE/images/pick-tool.png',
40
41 },
42 );
43
44
45