diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2004-02-29 20:28:11 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2004-02-29 20:28:11 +0000 |
commit | 5bb0fcd1e717b608155c8c234e55204ad5894d7c (patch) | |
tree | a89c284a16968e5c3637fc99d290d107085f1cbb /lispintro | |
parent | 9e6e8d1a2c13a7cdb87ede3c5309ef3ad77f6d51 (diff) | |
download | emacs-5bb0fcd1e717b608155c8c234e55204ad5894d7c.tar.gz |
* man/makefile.w32-in (mostlyclean, clean, maintainer-clean): Use
$(DEL) instead of rm, and ignore exit code.
* lispintro/makefile.w32-in (mostlyclean, clean, maintainer-clean): Use
$(DEL) instead of rm, and ignore exit code.
* lispref/makefile.w32-in (clean, maintainer-clean): Use $(DEL) instead of
rm, and ignore exit code.
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. |