diff options
| author | Juanma Barranquero | 2009-09-29 00:55:01 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2009-09-29 00:55:01 +0000 |
| commit | 79711e367065b54e2aa49eb4aad2249f729f1df5 (patch) | |
| tree | 71103e46ea290492ff5f5c894b0906181f979852 | |
| parent | 7c4dccd032cdc3a3e6f1b608a66cd14c926079d8 (diff) | |
| download | emacs-79711e367065b54e2aa49eb4aad2249f729f1df5.tar.gz emacs-79711e367065b54e2aa49eb4aad2249f729f1df5.zip | |
* makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
(WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
(update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
| -rw-r--r-- | lisp/makefile.w32-in | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index fa22f1d5209..99511f4544d 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in | |||
| @@ -83,14 +83,15 @@ COMPILE_FIRST = \ | |||
| 83 | emacs = "$(EMACS)" $(EMACSOPT) | 83 | emacs = "$(EMACS)" $(EMACSOPT) |
| 84 | 84 | ||
| 85 | # Have to define the list of subdirs manually when not using sh. | 85 | # Have to define the list of subdirs manually when not using sh. |
| 86 | WINS_ALMOST=\ | 86 | WINS_CEDET=\ |
| 87 | cedet/ede \ | ||
| 88 | cedet/semantic \ | ||
| 89 | cedet/srecode | ||
| 90 | |||
| 91 | WINS_BASIC=\ | ||
| 87 | calc \ | 92 | calc \ |
| 88 | calendar \ | 93 | calendar \ |
| 89 | cedet \ | 94 | cedet \ |
| 90 | cedet/ede \ | ||
| 91 | cedet/semantic \ | ||
| 92 | cedet/srecode \ | ||
| 93 | eieio \ | ||
| 94 | emacs-lisp \ | 95 | emacs-lisp \ |
| 95 | emulation \ | 96 | emulation \ |
| 96 | erc \ | 97 | erc \ |
| @@ -108,6 +109,12 @@ WINS_ALMOST=\ | |||
| 108 | textmodes \ | 109 | textmodes \ |
| 109 | url | 110 | url |
| 110 | 111 | ||
| 112 | WINS_ALMOST=$(WINS_BASIC) \ | ||
| 113 | $(WINS_CEDET) | ||
| 114 | |||
| 115 | WINS_SUBDIR=$(WINS_BASIC) \ | ||
| 116 | obsolete | ||
| 117 | |||
| 111 | WINS= $(WINS_ALMOST) \ | 118 | WINS= $(WINS_ALMOST) \ |
| 112 | term \ | 119 | term \ |
| 113 | obsolete | 120 | obsolete |
| @@ -203,7 +210,7 @@ update-subdirs-CMD: doit | |||
| 203 | echo ;; In load-path, after this directory should come>> $(lisp)/subdirs.el | 210 | echo ;; In load-path, after this directory should come>> $(lisp)/subdirs.el |
| 204 | echo ;; certain of its subdirectories. Here we specify them.>> $(lisp)/subdirs.el | 211 | echo ;; certain of its subdirectories. Here we specify them.>> $(lisp)/subdirs.el |
| 205 | echo (normal-top-level-add-to-load-path $(SQUOTE)(>> $(lisp)/subdirs.el | 212 | echo (normal-top-level-add-to-load-path $(SQUOTE)(>> $(lisp)/subdirs.el |
| 206 | @for %%d in ($(WINS)) do if not (%%d)==(term) echo "%%d">> $(lisp)/subdirs.el | 213 | @for %%d in ($(WINS_SUBDIR)) do echo "%%d">> $(lisp)/subdirs.el |
| 207 | echo ))>> $(lisp)/subdirs.el | 214 | echo ))>> $(lisp)/subdirs.el |
| 208 | 215 | ||
| 209 | update-subdirs-SH: doit | 216 | update-subdirs-SH: doit |