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