/[cwmp]/google/trunk/inc/Module/Install/PRIVATE.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /google/trunk/inc/Module/Install/PRIVATE.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 189 - (hide annotations)
Mon Nov 12 15:19:32 2007 UTC (16 years, 6 months ago) by dpavlin
File size: 569 byte(s)
added inc directory so that Module::Install can pull all
dependencies right out of svn checkout
1 dpavlin 189 #line 1
2     # Dobrica Pavlinusic, <dpavlin@rot13.org> 10/26/07 14:26:36 CEST
3     package Module::Install::PRIVATE;
4    
5     use strict;
6     use warnings;
7    
8     use base 'Module::Install::Base';
9     our $VERSION = '0.01';
10    
11     #line 20
12    
13     sub my_targets {
14     my ($self) = @_;
15    
16     $self->postamble(<<"END_MAKEFILE");
17     # --- $self section:
18    
19     dump: all
20     rm dump/* || true
21     ./bin/acs.pl -d -d -d --protocol-dump 2>&1 | tee log
22    
23     html: \$(MAN1PODS) \$(MAN3PODS)
24     test -d html || mkdir html
25     allpod2xhtml.pl --frames="Perl CWMP server" lib/ html/
26    
27     END_MAKEFILE
28    
29     warn "added my targets: dump\n";
30    
31     return $self;
32     }
33    
34     1;

  ViewVC Help
Powered by ViewVC 1.1.26