comparison lisp/Makefile.in @ 47536:211a66b32323

(bootstrap-clean): Use cd to shorten arg strings. Don't ignore errors in rm line.
author Richard M. Stallman <rms@gnu.org>
date Wed, 18 Sep 2002 16:14:30 +0000
parents f41b79ef76f5
children 93d886a02ac0
comparison
equal deleted inserted replaced
47535:761358848235 47536:211a66b32323
276 # autoload as expected. Remove compiled Lisp files so that 276 # autoload as expected. Remove compiled Lisp files so that
277 # bootstrap-emacs will be built from sources only. 277 # bootstrap-emacs will be built from sources only.
278 278
279 bootstrap-clean: 279 bootstrap-clean:
280 if test -x $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi 280 if test -x $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi
281 -rm -f $(lisp)/*.elc $(lisp)/*/*.elc 281 cd $(lisp); rm -f *.elc */*.elc
282 282
283 # Generate/update files for the bootstrap process. 283 # Generate/update files for the bootstrap process.
284 284
285 bootstrap: update-subdirs autoloads compile finder-data custom-deps 285 bootstrap: update-subdirs autoloads compile finder-data custom-deps
286 286