r144@llin (orig r143): dpavlin | 2007-10-28 00:03:29 +0200
[perl-cwmp.git] / lib / Module / Install / PRIVATE.pm
index 1226843..62929c7 100644 (file)
@@ -15,7 +15,7 @@ Module::Install::PRIVATE - Module Install Support
 
 =head1 DESCRIPTION
 
-=head2 html_target
+=head2 my_targets
 
 =cut
 
@@ -25,12 +25,17 @@ sub my_targets {
        $self->postamble(<<"END_MAKEFILE");
 # --- $self section:
 
-debug:
+dump: all
+       rm dump/* || true
        ./bin/acs.pl -d -d -d 2>&1 | tee log
 
+html: \$(MAN1PODS) \$(MAN3PODS)
+       test -d html || mkdir html
+       allpod2xhtml.pl lib/ html/
+
 END_MAKEFILE
 
-       warn "added my targets\n";
+       warn "added my targets: dump\n";
 
        return $self;
 }