ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Mozilla-Plugin/Makefile.PL
Revision: 1.3
Committed: Sat Feb 24 01:48:37 2001 UTC (23 years, 4 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.2: +2 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 require 5.006;
4
5 WriteMakefile(
6 NAME => 'Mozilla::Plugin',
7 DIR => ['ns4'],
8 VERSION_FROM => 'Plugin.pm',
9 PM => {
10 'Plugin.pm' => '$(INST_LIBDIR)/Plugin.pm',
11 'Plugin/Gtk.pm' => '$(INST_LIBDIR)/Plugin/Gtk.pm',
12 },
13 PREREQ_PM => {
14 Storable => 0.5,
15 },
16 );
17
18 sub MY::postamble {
19 <<"EOF";
20
21 clean ::
22 EOF
23 }
24