From 09767575a5b12f2491b257d3f58157a4139f0296 Mon Sep 17 00:00:00 2001 From: Ralph Giles <giles@mozilla.com> Date: Wed, 7 Sep 2011 11:18:23 -0700 Subject: [PATCH] Tell automake to clean the doxygen output. Without the extra clean, 'make distcheck' fails because the distclean target doesn't remove all generated files. --- doc/Makefile.am | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/Makefile.am b/doc/Makefile.am index 7e72e1144..3b135dd36 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -18,3 +18,10 @@ doxygen-build.stamp: Doxyfile $(DOCINPUTS) @echo "*** Warning: Doxygen not found; API documentation will not be built." touch $@ endif + +# delete doxygen subdirs +clean-local: + -rm -rf html + -rm -rf latex + -rm -rf man + -rm doxygen-build.stamp -- GitLab