Displaying 1 result from an estimated 1 matches for "5fd97cc".
Did you mean:
2fd17cc
2013 Jan 18
0
[PATCH] Fix the 'distclean' target.
...+++ 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 2b06aab..5fd97cc 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
en...