summaryrefslogtreecommitdiff
path: root/lisp/makefile.w32-in
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2002-07-31 07:45:41 +0000
committerJuanma Barranquero <lekktu@gmail.com>2002-07-31 07:45:41 +0000
commitb663335e9a088b0d76b9a2779bb48c32fa7f8315 (patch)
tree07d9a3e28ee1808d5fd5c155dbcd790346fc1299 /lisp/makefile.w32-in
parentb0046973897c7228c48458104c986583d7797c72 (diff)
downloademacs-b663335e9a088b0d76b9a2779bb48c32fa7f8315.tar.gz
Revert some changes from 2002-07-23 because they don't work on MSVC/nmake builds.
Diffstat (limited to 'lisp/makefile.w32-in')
-rw-r--r--lisp/makefile.w32-in18
1 files changed, 7 insertions, 11 deletions
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in
index 2f9a5e1ae0c..e3d42edc8fb 100644
--- a/lisp/makefile.w32-in
+++ b/lisp/makefile.w32-in
@@ -240,18 +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: subdirs.el compile-$(SHELLTYPE) doit
+compile-files: subdirs.el compile-files-$(SHELLTYPE) doit
-compile-CMD:
+compile-files-CMD:
# -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g
- for %f in ($(COMPILE_FIRST)) do \
- if not exist %f \
- $(emacs) -f batch-byte-compile-if-not-done %f
- for %f in (. $(WINS)) do for %g in (%f/*.el) do \
- if not exist %f/%g \
- $(emacs) -f batch-byte-compile-if-not-done %f/%g
-
-compile-SH:
+ 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:
# for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done
for el in $(COMPILE_FIRST); do \
echo Compiling $$el; \
@@ -338,7 +334,7 @@ bootstrap-clean-SH:
# Generate/update files for the bootstrap process.
-bootstrap: update-subdirs autoloads compile finder-data custom-deps
+bootstrap: autoloads compile-files finder-data custom-deps
#
# Assuming INSTALL_DIR is defined, copy the elisp files to it