Re: How to install doxygen-generated HTML documentation?

2008-05-18 Thread Peter Simons
Hi Stepan, first of all, thank you very much for your insightful response. I appreciate that you've taken so much time to help me with this issue. I chose this approach to solve my doxygen problem: > [2] You can avoid running your "html-local" within the distcheck. I'm glad that using this tech

Re: How to install doxygen-generated HTML documentation?

2008-05-14 Thread Stepan Kasal
Hello, On Tue, May 13, 2008 at 07:37:15PM +0200, Peter Simons wrote: > The 'dist' and 'install' targets should work, but 'distcheck' > fails with a "permission denied" error. If you can figure out how > to remedy the problem, then that would be really great. well. First, I sucessfully reproduced

Re: How to install doxygen-generated HTML documentation?

2008-05-13 Thread Peter Simons
Hi Stepan. > [Could] you post a self-contained example made from your > project which I could edit to get it through distcheck? A simple project is attached below. Run the following commands to configure it: autoreconf -i -s && ./configure --prefix=`pwd`/_dist The 'dist' and 'install' targe

Re: How to install doxygen-generated HTML documentation?

2008-05-13 Thread Stepan Kasal
Hello again, Peter, On Mon, May 05, 2008 at 07:07:54PM +0200, Peter Simons wrote: > > Another way is to do all the necessary work manually: defining > > install-data-local, uninstall-local, etc. That should be safer. > > Thank you for the recommendation. I tried it. Both 'dist' and 'install' >

Re: How to install doxygen-generated HTML documentation?

2008-05-05 Thread Peter Simons
Hi Stepan. > Another way is to do all the necessary work manually: defining > install-data-local, uninstall-local, etc. That should be safer. Thank you for the recommendation. I tried it. Both 'dist' and 'install' work fine with those local hooks, but unfortunately 'distcheck' won't. Best reg

Re: How to install doxygen-generated HTML documentation?

2008-05-05 Thread Stepan Kasal
On Sat, May 03, 2008 at 01:08:16AM +0200, Peter Simons wrote: > Warren Young writes: > > dist_pkgdata_DATA = html/* > > When I try that, I get the following error message: > | make[1]: *** No rule to make target `html/*', needed by `all-am'. Stop. well, that's because all-local is not hooked t

Re: How to install doxygen-generated HTML documentation?

2008-05-02 Thread Peter Simons
Warren Young writes: > dist_pkgdata_DATA = html/* When I try that, I get the following error message: | [...] | make[1]: Entering directory `/home/simons/cxx/ioxx/obj/doc' | make[1]: *** No rule to make target `html/*', needed by `all-am'. Stop. | make[1]: Leaving directory `/home/simons/c

Re: How to install doxygen-generated HTML documentation?

2008-05-02 Thread Warren Young
Peter Simons wrote: dist_pkgdata_DATA = html Try: dist_pkgdata_DATA = html/*

How to install doxygen-generated HTML documentation?

2008-05-02 Thread Peter Simons
Hi, as part of my Automake build, I run doxygen to generate documentation. That process generates a whole directory of HTML files that I'd like to distribute and install. The obvious solution, however, doesn't work: # ~/doc/Makefile.am dist_pkgdata_DATA = html all-local: $(DOXYG