Mr. Urban sent me this piece of code for my Makefile.PL
last December.  Thank you.

I've finally gotten around to trying to use this and it works fine.
Has anyone done anything to get this to put stuff into clearcase?


How do I get this to put "other files" into other directories?

in my installation directory I have:
bin
lib
man
html
I would like to have also
ZZZZ

I need files put there that are neither executable.  THey may
be part of the default for some of the bin and lib/*.pm files.


Reini Urban wrote:
> 
> Billy Patton schrieb:
> > When the Makefile is created the only documentation
> > that is generated for the pod is man pages.  Is there
> > anyway I can force it to generate html?
> 
> something like this?
> 
> WriteMakefile(
>     'NAME'  => 'My::Package',
>     'VERSION_FROM' => 'Package.pm',
>     # ...
>     # additional targets
>     'depend' => {
>       # update the pod2text README and HTML from the embedded pod
>       'pod'  => "\$(DISTVNAME).txt \$(DISTVNAME).html\n",
>       'dist' => "\$(DISTDEFAULT) \$(DISTVNAME).txt \$(DISTVNAME).html\n",
>       '$(DISTVNAME).txt' => "\$(VERSION_FROM)\n" .
>         "\tpod2text \$(VERSION_FROM) >\$(DISTVNAME).txt\n",
>       '$(DISTVNAME).html' => "\$(VERSION_FROM)\n" .
>         "\tpod2html \$(VERSION_FROM) >\$(DISTVNAME).html\n",
>     }
>     # ...
> }
> --
> Reini Urban
> http://xarch.tu-graz.ac.at/home/rurban/

Reply via email to