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

File Contents

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