Ti> I really have two questions. First, is there an easy way to extend
Ti> automake/autoconf to support perl package installations.
It probably isn't hard to do.
But I thought Perl had its own build and install program.
Ti> But I can't seem to make automake behave nicely. I'm using
Ti> bin_SCRIPTS and libexec_SCRIPTS to do the make stuff, but I want a
Ti> section called make "docs" to be run when someone just types
Ti> 'make' (basically because make docs does a few pod2* commands).
There are several ways to do this.
If you plan to install the docs, just make them data:
docdir = $(prefix)/install/directory/for/docs
doc_DATA = list the outputs
This will cause the docs to be built by whatever rules you include for
building them.
Ti> make test
Ordinarily this is called "make check" in the automake world.
Ti> make prep
What does this do?
Tom