/[cwmp]/google/trunk/lib/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/lib/Module/Install/PRIVATE.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 201 - (hide annotations)
Wed Nov 14 21:44:34 2007 UTC (16 years, 7 months ago) by dpavlin
File size: 693 byte(s)
 r214@brr:  dpavlin | 2007-11-14 22:44:16 +0100
 clean queue on make dump

1 dpavlin 116 # Dobrica Pavlinusic, <dpavlin@rot13.org> 10/26/07 14:26:36 CEST
2     package Module::Install::PRIVATE;
3    
4     use strict;
5     use warnings;
6    
7     use base 'Module::Install::Base';
8     our $VERSION = '0.01';
9    
10     =head1 NAME
11    
12     Module::Install::PRIVATE - Module Install Support
13    
14     =head1 SYNOPSIS
15    
16     =head1 DESCRIPTION
17    
18 dpavlin 159 =head2 my_targets
19 dpavlin 116
20     =cut
21    
22     sub my_targets {
23     my ($self) = @_;
24    
25     $self->postamble(<<"END_MAKEFILE");
26     # --- $self section:
27    
28 dpavlin 117 dump: all
29 dpavlin 118 rm dump/* || true
30 dpavlin 201 rm -Rf queue/ || true
31     ./bin/acs.pl -d -d -d -d 2>&1 | tee log
32 dpavlin 116
33 dpavlin 157 html: \$(MAN1PODS) \$(MAN3PODS)
34     test -d html || mkdir html
35 dpavlin 160 allpod2xhtml.pl --frames="Perl CWMP server" lib/ html/
36 dpavlin 157
37 dpavlin 116 END_MAKEFILE
38    
39 dpavlin 195 warn "added my targets: dump, html\n";
40 dpavlin 116
41     return $self;
42     }
43    
44     1;

  ViewVC Help
Powered by ViewVC 1.1.26