comparison lisp/Makefile.in @ 91204:53108e6cea98

Merge from emacs--devo--0 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-294
author Miles Bader <miles@gnu.org>
date Thu, 06 Dec 2007 09:51:45 +0000
parents 880960b70474 d404da216302
children 606f2d163a64
comparison
equal deleted inserted replaced
91203:db40129142b2 91204:53108e6cea98
295 fi 295 fi
296 chmod +w $(lisp)/loaddefs.el \ 296 chmod +w $(lisp)/loaddefs.el \
297 $(lisp)/ps-print.el \ 297 $(lisp)/ps-print.el \
298 $(lisp)/emacs-lisp/cl-loaddefs.el 298 $(lisp)/emacs-lisp/cl-loaddefs.el
299 299
300 maintainer-clean: distclean 300 maintainer-clean: distclean bootstrap-clean
301 cd $(lisp); rm -f *.elc */*.elc $(AUTOGENEL) 301 cd $(lisp); rm -f $(AUTOGENEL)
302 302
303 ## NB note that this rules assume only one level of subdirs below lisp/.
304 ## If nested subdirs are added, it's probably time to switch to:
305 ## find $(lisp) -name "*.elc" -exec rm -f '{}' ';'
303 bootstrap-clean: 306 bootstrap-clean:
304 cd $(lisp); rm -f *.elc */*.elc 307 cd $(lisp); rm -f *.elc */*.elc
305 308
306 # Generate/update files for the bootstrap process. 309 # Generate/update files for the bootstrap process.
307 310
313 bootstrap-after: finder-data custom-deps 316 bootstrap-after: finder-data custom-deps
314 317
315 distclean: 318 distclean:
316 -rm -f ./Makefile 319 -rm -f ./Makefile
317 320
321 .PHONY: check-declare
322
323 check-declare:
324 $(emacs) -l $(lisp)/emacs-lisp/check-declare \
325 --eval '(check-declare-directory "$(lisp)")'
326
318 # Makefile ends here. 327 # Makefile ends here.