Mercurial > emacs
changeset 56151:9ef25bd8db0d
Double percent signs in for loops.
author | Jason Rumney <jasonr@gnu.org> |
---|---|
date | Fri, 18 Jun 2004 21:06:29 +0000 |
parents | 52798bcd26d1 |
children | dd4e1a1d020e |
files | lisp/makefile.w32-in |
diffstat | 1 files changed, 11 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/makefile.w32-in Thu Jun 17 19:35:00 2004 +0000 +++ b/lisp/makefile.w32-in Fri Jun 18 21:06:29 2004 +0000 @@ -237,7 +237,7 @@ echo ;; In load-path, after this directory should come>> subdirs.el echo ;; certain of its subdirectories. Here we specify them.>> subdirs.el echo (normal-top-level-add-to-load-path $(SQUOTE)(>> subdirs.el - @for %d in ($(WINS)) do if not (%d)==(term) echo "%d">> subdirs.el + @for %%d in ($(WINS)) do if not (%%d)==(term) echo "%%d">> subdirs.el echo ))>> subdirs.el update-subdirs-SH: doit @@ -282,11 +282,11 @@ 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) -l loaddefs -f batch-byte-compile-if-not-done %f - for %f in (. $(WINS)) do for %g in (%f/*.el) do \ - $(emacs) -l loaddefs -f batch-byte-compile-if-not-done %f/%g +# -for %%f in ($(lisp) $(WINS)) do for %%g in (%%f\*.elc) do @attrib -r %%g + for %%f in ($(COMPILE_FIRST)) do \ + $(emacs) -l loaddefs -f batch-byte-compile-if-not-done %%f + for %%f in (. $(WINS)) do for %%g in (%%f/*.el) do \ + $(emacs) -l loaddefs -f batch-byte-compile-if-not-done %%f/%%g compile-SH: # for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done @@ -309,9 +309,9 @@ compile-always: subdirs.el compile-always-$(SHELLTYPE) doit compile-always-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 +# -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-always-SH: # for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done @@ -329,7 +329,7 @@ compile-calc: compile-calc-$(SHELLTYPE) compile-calc-CMD: - for %f in ($(lisp)/calc/*.el) do $(emacs) -f batch-byte-compile %f + for %%f in ($(lisp)/calc/*.el) do $(emacs) -f batch-byte-compile %%f compile-calc-SH: for el in $(lisp)/calc/*.el; do \ @@ -374,7 +374,7 @@ bootstrap-clean-CMD: # if exist $(EMACS) $(MAKE) $(MFLAGS) autoloads if not exist $(lisp)\loaddefs.el cp $(lisp)/ldefs-boot.el $(lisp)/loaddefs.el - -for %f in (. $(WINS)) do for %g in (%f\*.elc) do @$(DEL) %g + -for %%f in (. $(WINS)) do for %%g in (%%f\*.elc) do @$(DEL) %%g bootstrap-clean-SH: # if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi