* lib/am/depend.am (am--clean-depdirs): New target, removing the
$(DEPDIR) directory.
(distclean, maintainer-clean): Renamed ...
(distclean-am, maintainer-clean-am): ... to these, and depend on the new
target above to clean the $(DEPDIR) directory. Given the current status
of the Automake internals, this shouldn't cause any change in the automake
behaviour, but the new form of these declarations will be useful in future
refactorings.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
am__mv = mv -f
-distclean:
+.PHONY: am--clean-depdirs
+am--clean-depdirs:
-rm -rf %DEPDIRS%
-maintainer-clean:
- -rm -rf %DEPDIRS%
+distclean-am: am--clean-depdirs
+maintainer-clean-am: am--clean-depdirs