automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to install doxygen-generated HTML documentation?


From: Stepan Kasal
Subject: Re: How to install doxygen-generated HTML documentation?
Date: Mon, 5 May 2008 15:24:21 +0200
User-agent: Mutt/1.5.17 (2007-11-01)

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 to dist.

A workaround is to build always before "make dist".
Or you can force that by a make wrapper, say GNUmakefile calling
"$(MAKE) -f Makefile" inside.

Or you can use a simple hack:

html/*:
        $(DOXYGEN)

Anyway, it still seems that uninstall does not work...

Another way is to do all the necessary work manually: defining
install-data-local, uninstall-local, etc.  That should be safer.

HTH,
        Stepan




reply via email to

[Prev in Thread] Current Thread [Next in Thread]