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 /lispref/makefile.w32-in | |
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 'lispref/makefile.w32-in')
-rw-r--r-- | lispref/makefile.w32-in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lispref/makefile.w32-in b/lispref/makefile.w32-in index f5f6c306eec..3ac9920fbd7 100644 --- a/lispref/makefile.w32-in +++ b/lispref/makefile.w32-in @@ -110,14 +110,14 @@ elisp.dvi: $(srcs) $(texinputdir) $(TEX) $(srcdir)/elisp.texi clean: - rm -f *.toc *.aux *.log *.cp *.cps *.fn *.fns *.tp *.tps \ - *.vr *.vrs *.pg *.pgs *.ky *.kys - rm -f make.out core - rm -f $(infodir)/elisp* + - $(DEL) *.toc *.aux *.log *.cp *.cps *.fn *.fns *.tp *.tps \ + *.vr *.vrs *.pg *.pgs *.ky *.kys + - $(DEL) make.out core + - $(DEL) $(infodir)/elisp* distclean: clean maintainer-clean: clean - rm -f elisp elisp-* elisp.dvi elisp.oaux + - $(DEL) elisp elisp-* elisp.dvi elisp.oaux # arch-tag: da68f1c2-536d-4d41-9150-7b01434eda3f |