diff options
Diffstat (limited to 'lisp/Makefile.in')
-rw-r--r-- | lisp/Makefile.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 9bcd5a88242..ee2c2091770 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -453,18 +453,22 @@ $(CAL_DIR)/hol-loaddefs.el: $(CAL_SRC) $(CAL_DIR)/diary-loaddefs.el --eval "(setq generated-autoload-file (expand-file-name (unmsys--file-name \"$@\")))" \ -f batch-update-autoloads $(CAL_DIR) -.PHONY: bootstrap-clean distclean maintainer-clean +.PHONY: bootstrap-clean distclean maintainer-clean extraclean bootstrap-clean: find $(lisp) -name '*.elc' $(FIND_DELETE) rm -f $(AUTOGENEL) distclean: - -rm -f ./Makefile $(lisp)/loaddefs.el~ + -rm -f ./Makefile $(lisp)/loaddefs.el maintainer-clean: distclean bootstrap-clean rm -f TAGS +extraclean: bootstrap-clean distclean + -for file in $(LOADDEFS); do rm -f $${file}~; done + -rm -f $(lisp)/loaddefs.el~ + .PHONY: check-declare check-declare: |