summaryrefslogtreecommitdiff
path: root/lisp/makefile.w32-in
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2002-08-01 17:07:28 +0000
committerRichard M. Stallman <rms@gnu.org>2002-08-01 17:07:28 +0000
commit1a08adbd71e421f18cec914f14f2fbd756dc210d (patch)
tree87765374a4374e55d65d35334d52fff57803a592 /lisp/makefile.w32-in
parent64bec56eeecd33fbdc8939dee16d6ee6dd3edcc6 (diff)
downloademacs-1a08adbd71e421f18cec914f14f2fbd756dc210d.tar.gz
(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-*'.
Diffstat (limited to 'lisp/makefile.w32-in')
-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):
# load's in the files being compiled find the right files.
# Need separate version for sh and native cmd.exe
-compile-files: subdirs.el compile-files-$(SHELLTYPE) doit
+compile: subdirs.el compile-$(SHELLTYPE) doit
-compile-files-CMD:
+compile-CMD:
# -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g
for %f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %f
for %f in (. $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g
-compile-files-SH:
+compile-SH:
# for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done
for el in $(COMPILE_FIRST); do \
echo Compiling $$el; \
@@ -305,7 +305,7 @@ backup-compiled-files:
# Compile Lisp files, but save old compiled files first.
-compile: backup-compiled-files compile-files
+compile-after-backup: backup-compiled-files compile-always
# Recompile all Lisp files which are newer than their .elc files.
# Note that this doesn't create .elc files. It only recompiles if an
@@ -334,7 +334,7 @@ bootstrap-clean-SH:
# Generate/update files for the bootstrap process.
-bootstrap: autoloads compile-files finder-data custom-deps
+bootstrap: update-subdirs autoloads compile finder-data custom-deps
#
# Assuming INSTALL_DIR is defined, copy the elisp files to it