summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@mozilla.com>2013-01-18 14:04:27 -0800
committerErik de Castro Lopo <erikd@mega-nerd.com>2013-01-19 11:52:33 +1100
commit4632f945de256ce53c902d0cc51022269573de0b (patch)
tree5d8a7397c7447138c7a8612d73930454ac45990e
parentf1841caba3d478e85e0488f7308d643b629fe9c6 (diff)
downloadflac-4632f945de256ce53c902d0cc51022269573de0b.tar.gz
Fix the 'distclean' target.
Generated documentation needs to be removed by this target for 'distcheck' to succeed. Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
-rw-r--r--doc/Makefile.am2
-rw-r--r--doc/html/Makefile.am4
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 67703e9e..54ec2706 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -38,5 +38,5 @@ doc_DATA = \
EXTRA_DIST = Doxyfile.in Makefile.lite doxygen.footer.html doxygen.header.html $(doc_DATA)
-maintainer-clean-local:
+distclean-local:
rm -rf FLAC.tag html/api doxytmp
diff --git a/doc/html/Makefile.am b/doc/html/Makefile.am
index 2b06aab6..5fd97cc4 100644
--- a/doc/html/Makefile.am
+++ b/doc/html/Makefile.am
@@ -75,6 +75,6 @@ install-data-local:
(cd $(builddir)/api && $(INSTALL_DATA) * $(DESTDIR)$(docdir)/api)
uninstall-local:
rm -rf $(DESTDIR)$(docdir)/api
-maintainer-clean-local:
- rm -rf api
+distclean-local:
+ -rm -rf api
endif