diff options
Diffstat (limited to 'lispintro')
-rw-r--r-- | lispintro/ChangeLog | 7 | ||||
-rw-r--r-- | lispintro/makefile.w32-in | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/lispintro/ChangeLog b/lispintro/ChangeLog index 52dfdec10b8..159bf98259e 100644 --- a/lispintro/ChangeLog +++ b/lispintro/ChangeLog @@ -1,4 +1,9 @@ -2003-11-16 Kevin Ryde <user42@zip.com.au> +2004-02-29 Juanma Barranquero <lektu@terra.es> + + * makefile.w32-in (mostlyclean, clean, maintainer-clean): Use + $(DEL) instead of rm, and ignore exit code. + +2003-11-16 Kevin Ryde <user42@zip.com.au> * emacs-lisp-intro.texi: [CVS commitment by <bob@rattlesnake.com>] Corrections to cross references, diff --git a/lispintro/makefile.w32-in b/lispintro/makefile.w32-in index 2934d84ab5f..7af64075bc2 100644 --- a/lispintro/makefile.w32-in +++ b/lispintro/makefile.w32-in @@ -56,15 +56,15 @@ emacs-lisp-intro.html: $(INFO_SOURCES) $(DVIPS) $< -o $@ mostlyclean: - rm -f *.log *.cp *.fn *.ky *.pg *.vr *.tp + - $(DEL) *.log *.cp *.fn *.ky *.pg *.vr *.tp clean: mostlyclean - rm -f *.dvi $(infodir)/eintr* + - $(DEL) *.dvi $(infodir)/eintr* distclean: clean maintainer-clean: distclean - rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc + - $(DEL) *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. |