diff options
-rw-r--r-- | lispref/ChangeLog | 7 | ||||
-rw-r--r-- | lispref/makefile.w32-in | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 88aeae85b25..f89cea2002c 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -1,3 +1,10 @@ +2006-12-07 Juanma Barranquero <lekktu@gmail.com> + + * makefile.w32-in (maintainer-clean): Depend on `distclean'. + Don't remove elisp* info files; they are already deleted by the + `clean' and `distclean' targets, and they are in the $(infodir) + directory, not the current one. + 2006-12-04 Kim F. Storm <storm@cua.dk> * commands.texi (Misc Events): Update signal events. diff --git a/lispref/makefile.w32-in b/lispref/makefile.w32-in index 7da88058bd5..30dfb6ac1d2 100644 --- a/lispref/makefile.w32-in +++ b/lispref/makefile.w32-in @@ -119,5 +119,5 @@ clean: distclean: clean -maintainer-clean: clean - - $(DEL) elisp elisp-* elisp.dvi elisp.oaux +maintainer-clean: distclean + - $(DEL) elisp.dvi elisp.oaux |