aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Documentation/Makefile1
-rw-r--r--Makefile1
-rw-r--r--lisp/Makefile1
3 files changed, 3 insertions, 0 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile
index 1c6164d..c289f84 100644
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
@@ -56,6 +56,7 @@ install-info: info
$(CP) $(INFOPAGES) $(DESTDIR)$(infodir)
clean:
+ @printf "Cleaning Documentation/*...\n"
@$(RM) $(INFOPAGES) dir
authors: AUTHORS.md
diff --git a/Makefile b/Makefile
index cc7c560..9d31095 100644
--- a/Makefile
+++ b/Makefile
@@ -82,6 +82,7 @@ test-interactive:
(ert t))"
clean: clean-lisp clean-docs
+ @printf "Cleaning...\n"
@$(RM) $(ELCS) $(ELGS) # temporary cleanup kludge
@$(RM) *.gz *.tar.gz *.tar Documentation/*.texi~
@$(RMDIR) magit-$(VERSION)
diff --git a/lisp/Makefile b/lisp/Makefile
index 78a25fa..bfc5ce8 100644
--- a/lisp/Makefile
+++ b/lisp/Makefile
@@ -75,4 +75,5 @@ install: lisp
$(CP) $(ELS) magit-autoloads.el magit-version.el $(ELCS) $(DESTDIR)$(lispdir)
clean:
+ @printf "Cleaning lisp/*...\n"
@$(RM) $(ELCS) $(ELGS)