aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-08-01 17:07:28 +0000
committerRichard M. Stallman2002-08-01 17:07:28 +0000
commitd198b6f502fea413ecb21f8af319e3afe92c2586 (patch)
tree30428d3d3eb8ac633a33db4b776d29fd7ba93ca4
parentb3ac6ca9263bc9204cff97217c211c82dcbe6274 (diff)
downloademacs-d198b6f502fea413ecb21f8af319e3afe92c2586.tar.gz
emacs-d198b6f502fea413ecb21f8af319e3afe92c2586.zip
(compile-after-backup): Renamed from `compile'.
Use `compile-always'. (bootstrap): Use `compile', not `compile-files'. Use `update-subdirs'. (compile): Renamed from `compile-files'. (compile-CMD, compile-SH): Renamed from `compile-files-*'.
-rw-r--r--lisp/makefile.w32-in10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in
index a2c2be48b13..3cfe43e4936 100644
--- a/lisp/makefile.w32-in
+++ b/lisp/makefile.w32-in
@@ -240,14 +240,14 @@ $(DONTCOMPILE:.el=.elc):
240# load's in the files being compiled find the right files. 240# load's in the files being compiled find the right files.
241 241
242# Need separate version for sh and native cmd.exe 242# Need separate version for sh and native cmd.exe
243compile-files: subdirs.el compile-files-$(SHELLTYPE) doit 243compile: subdirs.el compile-$(SHELLTYPE) doit
244 244
245compile-files-CMD: 245compile-CMD:
246# -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g 246# -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g
247 for %f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %f 247 for %f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %f
248 for %f in (. $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g 248 for %f in (. $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g
249 249
250compile-files-SH: 250compile-SH:
251# for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done 251# for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done
252 for el in $(COMPILE_FIRST); do \ 252 for el in $(COMPILE_FIRST); do \
253 echo Compiling $$el; \ 253 echo Compiling $$el; \
@@ -305,7 +305,7 @@ backup-compiled-files:
305 305
306# Compile Lisp files, but save old compiled files first. 306# Compile Lisp files, but save old compiled files first.
307 307
308compile: backup-compiled-files compile-files 308compile-after-backup: backup-compiled-files compile-always
309 309
310# Recompile all Lisp files which are newer than their .elc files. 310# Recompile all Lisp files which are newer than their .elc files.
311# Note that this doesn't create .elc files. It only recompiles if an 311# Note that this doesn't create .elc files. It only recompiles if an
@@ -334,7 +334,7 @@ bootstrap-clean-SH:
334 334
335# Generate/update files for the bootstrap process. 335# Generate/update files for the bootstrap process.
336 336
337bootstrap: autoloads compile-files finder-data custom-deps 337bootstrap: update-subdirs autoloads compile finder-data custom-deps
338 338
339# 339#
340# Assuming INSTALL_DIR is defined, copy the elisp files to it 340# Assuming INSTALL_DIR is defined, copy the elisp files to it