ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Mozilla-Plugin/Makefile.PL
Revision: 1.4
Committed: Sat Jul 21 00:41:47 2001 UTC (22 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 require 5.006;
4
5 WriteMakefile(
6 NAME => 'Browser::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