aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2009-09-29 00:55:01 +0000
committerJuanma Barranquero2009-09-29 00:55:01 +0000
commit79711e367065b54e2aa49eb4aad2249f729f1df5 (patch)
tree71103e46ea290492ff5f5c894b0906181f979852
parent7c4dccd032cdc3a3e6f1b608a66cd14c926079d8 (diff)
downloademacs-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-in19
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 = \
83emacs = "$(EMACS)" $(EMACSOPT) 83emacs = "$(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.
86WINS_ALMOST=\ 86WINS_CEDET=\
87 cedet/ede \
88 cedet/semantic \
89 cedet/srecode
90
91WINS_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
112WINS_ALMOST=$(WINS_BASIC) \
113 $(WINS_CEDET)
114
115WINS_SUBDIR=$(WINS_BASIC) \
116 obsolete
117
111WINS= $(WINS_ALMOST) \ 118WINS= $(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
209update-subdirs-SH: doit 216update-subdirs-SH: doit