[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/makefile.w32-in
From: |
Richard M. Stallman |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/makefile.w32-in |
Date: |
Thu, 01 Aug 2002 13:07:28 -0400 |
Index: emacs/lisp/makefile.w32-in
diff -c emacs/lisp/makefile.w32-in:1.23 emacs/lisp/makefile.w32-in:1.24
*** emacs/lisp/makefile.w32-in:1.23 Wed Jul 31 04:09:26 2002
--- emacs/lisp/makefile.w32-in Thu Aug 1 13:07:28 2002
***************
*** 240,253 ****
# 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-files-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:
# for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done
for el in $(COMPILE_FIRST); do \
echo Compiling $$el; \
--- 240,253 ----
# 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-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-SH:
# for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done
for el in $(COMPILE_FIRST); do \
echo Compiling $$el; \
***************
*** 305,311 ****
# Compile Lisp files, but save old compiled files first.
! compile: backup-compiled-files compile-files
# Recompile all Lisp files which are newer than their .elc files.
# Note that this doesn't create .elc files. It only recompiles if an
--- 305,311 ----
# Compile Lisp files, but save old compiled files first.
! 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,340 ****
# Generate/update files for the bootstrap process.
! bootstrap: autoloads compile-files finder-data custom-deps
#
# Assuming INSTALL_DIR is defined, copy the elisp files to it
--- 334,340 ----
# Generate/update files for the bootstrap process.
! bootstrap: update-subdirs autoloads compile finder-data custom-deps
#
# Assuming INSTALL_DIR is defined, copy the elisp files to it
- [Emacs-diffs] Changes to emacs/lisp/makefile.w32-in,
Richard M. Stallman <=