diff options
| author | Jason Rumney | 2004-06-18 21:06:29 +0000 |
|---|---|---|
| committer | Jason Rumney | 2004-06-18 21:06:29 +0000 |
| commit | 80bb1e21c080816e9f8d1a431eb467e23692da42 (patch) | |
| tree | 46d139dac32747f65b38623499477ab27aaa3917 | |
| parent | 95911c74767b550f9c1fe6c315870c4d28f8eda3 (diff) | |
| download | emacs-80bb1e21c080816e9f8d1a431eb467e23692da42.tar.gz emacs-80bb1e21c080816e9f8d1a431eb467e23692da42.zip | |
Double percent signs in for loops.
| -rw-r--r-- | lisp/makefile.w32-in | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index 71998d403e4..826cf89bfec 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in | |||
| @@ -237,7 +237,7 @@ update-subdirs-CMD: doit | |||
| 237 | echo ;; In load-path, after this directory should come>> subdirs.el | 237 | echo ;; In load-path, after this directory should come>> subdirs.el |
| 238 | echo ;; certain of its subdirectories. Here we specify them.>> subdirs.el | 238 | echo ;; certain of its subdirectories. Here we specify them.>> subdirs.el |
| 239 | echo (normal-top-level-add-to-load-path $(SQUOTE)(>> subdirs.el | 239 | echo (normal-top-level-add-to-load-path $(SQUOTE)(>> subdirs.el |
| 240 | @for %d in ($(WINS)) do if not (%d)==(term) echo "%d">> subdirs.el | 240 | @for %%d in ($(WINS)) do if not (%%d)==(term) echo "%%d">> subdirs.el |
| 241 | echo ))>> subdirs.el | 241 | echo ))>> subdirs.el |
| 242 | 242 | ||
| 243 | update-subdirs-SH: doit | 243 | update-subdirs-SH: doit |
| @@ -282,11 +282,11 @@ $(DONTCOMPILE:.el=.elc): | |||
| 282 | compile: subdirs.el compile-$(SHELLTYPE) doit | 282 | compile: subdirs.el compile-$(SHELLTYPE) doit |
| 283 | 283 | ||
| 284 | compile-CMD: | 284 | compile-CMD: |
| 285 | # -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g | 285 | # -for %%f in ($(lisp) $(WINS)) do for %%g in (%%f\*.elc) do @attrib -r %%g |
| 286 | for %f in ($(COMPILE_FIRST)) do \ | 286 | for %%f in ($(COMPILE_FIRST)) do \ |
| 287 | $(emacs) -l loaddefs -f batch-byte-compile-if-not-done %f | 287 | $(emacs) -l loaddefs -f batch-byte-compile-if-not-done %%f |
| 288 | for %f in (. $(WINS)) do for %g in (%f/*.el) do \ | 288 | for %%f in (. $(WINS)) do for %%g in (%%f/*.el) do \ |
| 289 | $(emacs) -l loaddefs -f batch-byte-compile-if-not-done %f/%g | 289 | $(emacs) -l loaddefs -f batch-byte-compile-if-not-done %%f/%%g |
| 290 | 290 | ||
| 291 | compile-SH: | 291 | compile-SH: |
| 292 | # for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done | 292 | # for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done |
| @@ -309,9 +309,9 @@ compile-SH: | |||
| 309 | compile-always: subdirs.el compile-always-$(SHELLTYPE) doit | 309 | compile-always: subdirs.el compile-always-$(SHELLTYPE) doit |
| 310 | 310 | ||
| 311 | compile-always-CMD: | 311 | compile-always-CMD: |
| 312 | # -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g | 312 | # -for %%f in ($(lisp) $(WINS)) do for %%g in (%%f\*.elc) do @attrib -r %%g |
| 313 | for %f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %f | 313 | for %%f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %%f |
| 314 | for %f in (. $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g | 314 | for %%f in (. $(WINS)) do for %%g in (%%f/*.el) do $(emacs) -f batch-byte-compile %%f/%%g |
| 315 | 315 | ||
| 316 | compile-always-SH: | 316 | compile-always-SH: |
| 317 | # for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done | 317 | # for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done |
| @@ -329,7 +329,7 @@ compile-always-SH: | |||
| 329 | compile-calc: compile-calc-$(SHELLTYPE) | 329 | compile-calc: compile-calc-$(SHELLTYPE) |
| 330 | 330 | ||
| 331 | compile-calc-CMD: | 331 | compile-calc-CMD: |
| 332 | for %f in ($(lisp)/calc/*.el) do $(emacs) -f batch-byte-compile %f | 332 | for %%f in ($(lisp)/calc/*.el) do $(emacs) -f batch-byte-compile %%f |
| 333 | 333 | ||
| 334 | compile-calc-SH: | 334 | compile-calc-SH: |
| 335 | for el in $(lisp)/calc/*.el; do \ | 335 | for el in $(lisp)/calc/*.el; do \ |
| @@ -374,7 +374,7 @@ bootstrap-clean: bootstrap-clean-$(SHELLTYPE) loaddefs.el | |||
| 374 | bootstrap-clean-CMD: | 374 | bootstrap-clean-CMD: |
| 375 | # if exist $(EMACS) $(MAKE) $(MFLAGS) autoloads | 375 | # if exist $(EMACS) $(MAKE) $(MFLAGS) autoloads |
| 376 | if not exist $(lisp)\loaddefs.el cp $(lisp)/ldefs-boot.el $(lisp)/loaddefs.el | 376 | if not exist $(lisp)\loaddefs.el cp $(lisp)/ldefs-boot.el $(lisp)/loaddefs.el |
| 377 | -for %f in (. $(WINS)) do for %g in (%f\*.elc) do @$(DEL) %g | 377 | -for %%f in (. $(WINS)) do for %%g in (%%f\*.elc) do @$(DEL) %%g |
| 378 | 378 | ||
| 379 | bootstrap-clean-SH: | 379 | bootstrap-clean-SH: |
| 380 | # if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi | 380 | # if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi |