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>
This commit is contained in:
Ralph Giles 2013-01-18 14:04:27 -08:00 committed by Erik de Castro Lopo
parent f1841caba3
commit 4632f945de
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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