diff options
| -rw-r--r-- | Documentation/Makefile | 1 | ||||
| -rw-r--r-- | Makefile | 1 | ||||
| -rw-r--r-- | lisp/Makefile | 1 |
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 @@ -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) |
