comparison lisp/Makefile.in @ 105598:8ada01fa272a

(compile-onefile): Load `bytecomp' rather than `bytecomp.el'.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 14 Oct 2009 15:13:44 +0000
parents 7f17857bf0eb
children 3084c40960c1
comparison
equal deleted inserted replaced
105597:117859152fa5 105598:8ada01fa272a
1454 # src/Makefile.in to rebuild a particular Lisp file, no questions asked. 1454 # src/Makefile.in to rebuild a particular Lisp file, no questions asked.
1455 # Use byte-compile-refresh-preloaded to try and work around some of 1455 # Use byte-compile-refresh-preloaded to try and work around some of
1456 # the most common problems of not bootstrapping from a clean state. 1456 # the most common problems of not bootstrapping from a clean state.
1457 compile-onefile: 1457 compile-onefile:
1458 @echo Compiling $(THEFILE) 1458 @echo Compiling $(THEFILE)
1459 @$(emacs) -l bytecomp.el -f byte-compile-refresh-preloaded $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $(THEFILE) 1459 @# Use byte-compile-refresh-preloaded to try and work around some of
1460 @# the most common bootstrapping problems.
1461 @$(emacs) -l bytecomp -f byte-compile-refresh-preloaded $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $(THEFILE)
1460 1462
1461 # Files MUST be compiled one by one. If we compile several files in a 1463 # Files MUST be compiled one by one. If we compile several files in a
1462 # row (i.e., in the same instance of Emacs) we can't make sure that 1464 # row (i.e., in the same instance of Emacs) we can't make sure that
1463 # the compilation environment is clean. We also set the load-path of 1465 # the compilation environment is clean. We also set the load-path of
1464 # the Emacs used for compilation to the current directory and its 1466 # the Emacs used for compilation to the current directory and its