newer Module::Install 0.75 bits
[perl-cwmp.git] / inc / Module / Install / PRIVATE.pm
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;