1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-03 18:41:25 -08:00

* 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.
This commit is contained in:
Juanma Barranquero 2004-02-29 20:28:11 +00:00
parent 9e6e8d1a2c
commit 5bb0fcd1e7
6 changed files with 43 additions and 28 deletions

View file

@ -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,

View file

@ -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.