Fix the 'distclean' target.
authorRalph Giles <giles@mozilla.com>
Fri, 18 Jan 2013 22:04:27 +0000 (14:04 -0800)
committerErik de Castro Lopo <erikd@mega-nerd.com>
Sat, 19 Jan 2013 00:52:33 +0000 (11:52 +1100)
Generated documentation needs to be removed by this target
for 'distcheck' to succeed.

Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
doc/Makefile.am
doc/html/Makefile.am

index 67703e9..54ec270 100644 (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
index 2b06aab..5fd97cc 100644 (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