/[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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 205 - (show annotations)
Wed Nov 14 23:02:17 2007 UTC (16 years, 5 months ago) by dpavlin
File size: 585 byte(s)
 r222@brr:  dpavlin | 2007-11-15 00:01:24 +0100
 added --create-dump option to acs.pl which will force creation
 of protocol dumps even without debug level > 2

1 #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 rm -Rf queue/ || true
22 ./bin/acs.pl -d -d -d -d 2>&1 | tee log
23
24 html: \$(MAN1PODS) \$(MAN3PODS)
25 test -d html || mkdir html
26 allpod2xhtml.pl --frames="Perl CWMP server" lib/ html/
27
28 END_MAKEFILE
29
30 warn "added my targets: dump, html\n";
31
32 return $self;
33 }
34
35 1;

  ViewVC Help
Powered by ViewVC 1.1.26