aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib-src/makefile.w32-in800
-rw-r--r--lisp/makefile.w32-in570
-rw-r--r--nt/makefile.w32-in412
-rw-r--r--src/makefile.w32-in2340
4 files changed, 2061 insertions, 2061 deletions
diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in
index fd1fbd9d07f..3654e82d01f 100644
--- a/lib-src/makefile.w32-in
+++ b/lib-src/makefile.w32-in
@@ -1,400 +1,400 @@
1# Makefile for GNU Emacs lib-src directory. 1# Makefile for GNU Emacs lib-src directory.
2# Copyright (C) 1994, 2000 Free Software Foundation, Inc. 2# Copyright (C) 1994, 2000 Free Software Foundation, Inc.
3# 3#
4# This file is part of GNU Emacs. 4# This file is part of GNU Emacs.
5# 5#
6# GNU Emacs is free software; you can redistribute it and/or modify 6# GNU Emacs is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by 7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2, or (at your option) 8# the Free Software Foundation; either version 2, or (at your option)
9# any later version. 9# any later version.
10# 10#
11# GNU Emacs is distributed in the hope that it will be useful, 11# GNU Emacs is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of 12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details. 14# GNU General Public License for more details.
15# 15#
16# You should have received a copy of the GNU General Public License 16# You should have received a copy of the GNU General Public License
17# along with GNU Emacs; see the file COPYING. If not, write to the 17# along with GNU Emacs; see the file COPYING. If not, write to the
18# Free Software Foundation, Inc., 59 Temple Place - Suite 330, 18# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19# Boston, MA 02111-1307, USA. 19# Boston, MA 02111-1307, USA.
20# 20#
21 21
22ALL = make-docfile hexl ctags etags movemail fakemail 22ALL = make-docfile hexl ctags etags movemail fakemail
23 23
24.PHONY: $(ALL) 24.PHONY: $(ALL)
25 25
26LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \ 26LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \
27 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc -I../src 27 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc -I../src
28 28
29# don't know what (if) to do with these yet... 29# don't know what (if) to do with these yet...
30# 30#
31# $(BLD)/sorted-doc.exe \ 31# $(BLD)/sorted-doc.exe \
32# $(BLD)/env.exe \ 32# $(BLD)/env.exe \
33# $(BLD)/server.exe \ 33# $(BLD)/server.exe \
34# $(BLD)/emacstool.exe \ 34# $(BLD)/emacstool.exe \
35# $(BLD)/leditcfns.exe \ 35# $(BLD)/leditcfns.exe \
36# $(BLD)/emacsclient.exe \ 36# $(BLD)/emacsclient.exe \
37# $(BLD)/cvtmail.exe \ 37# $(BLD)/cvtmail.exe \
38# $(BLD)/digest-doc.exe \ 38# $(BLD)/digest-doc.exe \
39# $(BLD)/test-distrib.exe \ 39# $(BLD)/test-distrib.exe \
40 40
41 41
42LIBS = $(BASE_LIBS) $(ADVAPI32) 42LIBS = $(BASE_LIBS) $(ADVAPI32)
43 43
44$(BLD)/make-docfile.exe: $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O) 44$(BLD)/make-docfile.exe: $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O)
45 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O) $(LIBS) 45 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O) $(LIBS)
46$(BLD)/hexl.exe: $(BLD)/hexl.$(O) 46$(BLD)/hexl.exe: $(BLD)/hexl.$(O)
47 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/hexl.$(O) $(LIBS) 47 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/hexl.$(O) $(LIBS)
48$(BLD)/fakemail.exe: $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) 48$(BLD)/fakemail.exe: $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O)
49 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) $(LIBS) 49 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) $(LIBS)
50 50
51make-docfile: $(BLD) $(BLD)/make-docfile.exe 51make-docfile: $(BLD) $(BLD)/make-docfile.exe
52ctags: $(BLD) $(BLD)/ctags.exe 52ctags: $(BLD) $(BLD)/ctags.exe
53etags: $(BLD) $(BLD)/etags.exe 53etags: $(BLD) $(BLD)/etags.exe
54hexl: $(BLD) $(BLD)/hexl.exe 54hexl: $(BLD) $(BLD)/hexl.exe
55movemail: $(BLD) $(BLD)/movemail.exe 55movemail: $(BLD) $(BLD)/movemail.exe
56fakemail: $(BLD) $(BLD)/fakemail.exe 56fakemail: $(BLD) $(BLD)/fakemail.exe
57 57
58GETOPTOBJS = $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O) 58GETOPTOBJS = $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O)
59GETOPTDEPS = $(GETOPTOBJS) getopt.h 59GETOPTDEPS = $(GETOPTOBJS) getopt.h
60MOVEMAILOBJS = $(BLD)/movemail.$(O) \ 60MOVEMAILOBJS = $(BLD)/movemail.$(O) \
61 $(BLD)/pop.$(O) \ 61 $(BLD)/pop.$(O) \
62 $(BLD)/ntlib.$(O) \ 62 $(BLD)/ntlib.$(O) \
63 $(GETOPTOBJS) 63 $(GETOPTOBJS)
64 64
65$(BLD)/movemail.exe: $(MOVEMAILOBJS) getopt.h 65$(BLD)/movemail.exe: $(MOVEMAILOBJS) getopt.h
66# put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib 66# put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
67 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(MOVEMAILOBJS) $(WSOCK32) $(LIBS) 67 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(MOVEMAILOBJS) $(WSOCK32) $(LIBS)
68 68
69ETAGSOBJ = $(BLD)/etags.$(O) \ 69ETAGSOBJ = $(BLD)/etags.$(O) \
70 $(BLD)/getopt.$(O) \ 70 $(BLD)/getopt.$(O) \
71 $(BLD)/getopt1.$(O) \ 71 $(BLD)/getopt1.$(O) \
72 $(BLD)/ntlib.$(O) \ 72 $(BLD)/ntlib.$(O) \
73 $(BLD)/regex.$(O) 73 $(BLD)/regex.$(O)
74 74
75$(BLD)/etags.exe: $(ETAGSOBJ) 75$(BLD)/etags.exe: $(ETAGSOBJ)
76 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS) 76 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS)
77 77
78 78
79$(BLD)/regex.$(O): ../src/regex.c ../src/regex.h ../src/config.h 79$(BLD)/regex.$(O): ../src/regex.c ../src/regex.h ../src/config.h
80 $(CC) $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \ 80 $(CC) $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \
81 ../src/regex.c $(CC_OUT)$@ 81 ../src/regex.c $(CC_OUT)$@
82 82
83ETAGS_CFLAGS = -DHAVE_GETCWD 83ETAGS_CFLAGS = -DHAVE_GETCWD
84$(BLD)/etags.$(O): etags.c 84$(BLD)/etags.$(O): etags.c
85 $(CC) $(CFLAGS) $(ETAGS_CFLAGS) $(CC_OUT)$@ etags.c 85 $(CC) $(CFLAGS) $(ETAGS_CFLAGS) $(CC_OUT)$@ etags.c
86 86
87CTAGSOBJ = $(BLD)/ctags.$(O) \ 87CTAGSOBJ = $(BLD)/ctags.$(O) \
88 $(BLD)/getopt.$(O) \ 88 $(BLD)/getopt.$(O) \
89 $(BLD)/getopt1.$(O) \ 89 $(BLD)/getopt1.$(O) \
90 $(BLD)/ntlib.$(O) \ 90 $(BLD)/ntlib.$(O) \
91 $(BLD)/regex.$(O) 91 $(BLD)/regex.$(O)
92 92
93$(BLD)/ctags.exe: $(CTAGSOBJ) 93$(BLD)/ctags.exe: $(CTAGSOBJ)
94 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS) 94 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS)
95 95
96ctags.c: etags.c 96ctags.c: etags.c
97 - $(DEL) ctags.c 97 - $(DEL) ctags.c
98 $(CP) etags.c ctags.c 98 $(CP) etags.c ctags.c
99 99
100CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS) 100CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS)
101$(BLD)/ctags.$(O): ctags.c 101$(BLD)/ctags.$(O): ctags.c
102 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) $(CC_OUT)$@ ctags.c 102 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) $(CC_OUT)$@ ctags.c
103 103
104# 104#
105# don't know what to do with these yet... 105# don't know what to do with these yet...
106# 106#
107# $(BLD)/sorted-doc.exe: $(BLD)/sorted-doc.$(O) 107# $(BLD)/sorted-doc.exe: $(BLD)/sorted-doc.$(O)
108# $(BLD)/yow.exe: $(BLD)/yow.$(O) 108# $(BLD)/yow.exe: $(BLD)/yow.$(O)
109# $(BLD)/emacstool.exe: $(BLD)/emacstool.$(O) 109# $(BLD)/emacstool.exe: $(BLD)/emacstool.$(O)
110# $(BLD)/leditcfns.exe: $(BLD)/leditcfns.$(O) 110# $(BLD)/leditcfns.exe: $(BLD)/leditcfns.$(O)
111# $(BLD)/server.exe: $(BLD)/server.$(O) 111# $(BLD)/server.exe: $(BLD)/server.$(O)
112# $(BLD)/cvtmail.exe: $(BLD)/cvtmail.$(O) 112# $(BLD)/cvtmail.exe: $(BLD)/cvtmail.$(O)
113# $(BLD)/digest-doc.exe: $(BLD)/digest-doc.$(O) 113# $(BLD)/digest-doc.exe: $(BLD)/digest-doc.$(O)
114# $(BLD)/emacsclient.exe: $(BLD)/emacsclient.$(O) 114# $(BLD)/emacsclient.exe: $(BLD)/emacsclient.$(O)
115# $(BLD)/test-distrib.exe: $(BLD)/test-distrib.$(O) 115# $(BLD)/test-distrib.exe: $(BLD)/test-distrib.$(O)
116 116
117# 117#
118# From ..\src\makefile.nt. 118# From ..\src\makefile.nt.
119# 119#
120obj = abbrev.c alloc.c alloca.c buffer.c bytecode.c callint.c callproc.c casefiddle.c cm.c cmds.c charset.c coding.c category.c ccl.c data.c dired.c dispnew.c doc.c doprnt.c editfns.c emacs.c eval.c fileio.c filelock.c filemode.c fns.c fontset.c indent.c insdel.c keyboard.c keymap.c lastfile.c lread.c macros.c marker.c minibuf.c xfaces.c mocklisp.c print.c process.c regex.c scroll.c search.c syntax.c sysdep.c term.c termcap.c tparam.c undo.c unexw32.c window.c xdisp.c casetab.c floatfns.c frame.c gmalloc.c intervals.c ralloc.c textprop.c vm-limit.c region-cache.c strftime.c w32.c w32console.c xfaces.c w32fns.c w32heap.c w32inevt.c w32proc.c w32reg.c w32menu.c w32select.c w32term.c w32xfns.c 120obj = abbrev.c alloc.c alloca.c buffer.c bytecode.c callint.c callproc.c casefiddle.c cm.c cmds.c charset.c coding.c category.c ccl.c data.c dired.c dispnew.c doc.c doprnt.c editfns.c emacs.c eval.c fileio.c filelock.c filemode.c fns.c fontset.c indent.c insdel.c keyboard.c keymap.c lastfile.c lread.c macros.c marker.c minibuf.c xfaces.c mocklisp.c print.c process.c regex.c scroll.c search.c syntax.c sysdep.c term.c termcap.c tparam.c undo.c unexw32.c window.c xdisp.c casetab.c floatfns.c frame.c gmalloc.c intervals.c ralloc.c textprop.c vm-limit.c region-cache.c strftime.c w32.c w32console.c xfaces.c w32fns.c w32heap.c w32inevt.c w32proc.c w32reg.c w32menu.c w32select.c w32term.c w32xfns.c
121 121
122# 122#
123# These are the lisp files that are loaded up in loadup.el 123# These are the lisp files that are loaded up in loadup.el
124# 124#
125lispsource = ../lisp/ 125lispsource = ../lisp/
126 126
127FACE_SUPPORT = $(lispsource)facemenu.elc 127FACE_SUPPORT = $(lispsource)facemenu.elc
128MOUSE_SUPPORT = $(lispsource)select.elc $(lispsource)scroll-bar.elc 128MOUSE_SUPPORT = $(lispsource)select.elc $(lispsource)scroll-bar.elc
129FLOAT_SUPPORT = $(lispsource)float-sup.elc 129FLOAT_SUPPORT = $(lispsource)float-sup.elc
130WINNT_SUPPORT = $(lispsource)ls-lisp.elc $(lispsource)w32-fns.elc $(lispsource)dos-w32.elc 130WINNT_SUPPORT = $(lispsource)ls-lisp.elc $(lispsource)w32-fns.elc $(lispsource)dos-w32.elc
131 131
132lisp= \ 132lisp= \
133 $(lispsource)abbrev.elc \ 133 $(lispsource)abbrev.elc \
134 $(lispsource)buff-menu.elc \ 134 $(lispsource)buff-menu.elc \
135 $(lispsource)byte-run.elc \ 135 $(lispsource)byte-run.elc \
136 $(lispsource)cus-start.el \ 136 $(lispsource)cus-start.el \
137 $(lispsource)custom.elc \ 137 $(lispsource)custom.elc \
138 $(lispsource)faces.elc \ 138 $(lispsource)faces.elc \
139 $(lispsource)files.elc \ 139 $(lispsource)files.elc \
140 $(lispsource)textmodes/fill.elc \ 140 $(lispsource)textmodes/fill.elc \
141 $(lispsource)format.elc \ 141 $(lispsource)format.elc \
142 $(FACE_SUPPORT) \ 142 $(FACE_SUPPORT) \
143 $(MOUSE_SUPPORT) \ 143 $(MOUSE_SUPPORT) \
144 $(FLOAT_SUPPORT) \ 144 $(FLOAT_SUPPORT) \
145 $(lispsource)frame.elc\ 145 $(lispsource)frame.elc\
146 $(X_WINDOWS_SUPPORT) \ 146 $(X_WINDOWS_SUPPORT) \
147 $(lispsource)help.elc \ 147 $(lispsource)help.elc \
148 $(lispsource)indent.elc \ 148 $(lispsource)indent.elc \
149 $(lispsource)isearch.elc \ 149 $(lispsource)isearch.elc \
150 $(lispsource)emacs-lisp/lisp-mode.elc \ 150 $(lispsource)emacs-lisp/lisp-mode.elc \
151 $(lispsource)emacs-lisp/lisp.elc \ 151 $(lispsource)emacs-lisp/lisp.elc \
152 $(lispsource)loadup.el \ 152 $(lispsource)loadup.el \
153 $(lispsource)loaddefs.el \ 153 $(lispsource)loaddefs.el \
154 $(lispsource)map-ynp.elc \ 154 $(lispsource)map-ynp.elc \
155 $(lispsource)menu-bar.elc \ 155 $(lispsource)menu-bar.elc \
156 $(lispsource)international/mule.elc \ 156 $(lispsource)international/mule.elc \
157 $(lispsource)international/mule-conf.el \ 157 $(lispsource)international/mule-conf.el \
158 $(lispsource)international/mule-cmds.elc \ 158 $(lispsource)international/mule-cmds.elc \
159 $(lispsource)international/characters.elc \ 159 $(lispsource)international/characters.elc \
160 $(lispsource)language/chinese.elc \ 160 $(lispsource)language/chinese.elc \
161 $(lispsource)language/cyrillic.elc \ 161 $(lispsource)language/cyrillic.elc \
162 $(lispsource)language/devanagari.elc \ 162 $(lispsource)language/devanagari.elc \
163 $(lispsource)language/english.elc \ 163 $(lispsource)language/english.elc \
164 $(lispsource)language/ethiopic.elc \ 164 $(lispsource)language/ethiopic.elc \
165 $(lispsource)language/european.elc \ 165 $(lispsource)language/european.elc \
166 $(lispsource)language/greek.elc \ 166 $(lispsource)language/greek.elc \
167 $(lispsource)language/hebrew.elc \ 167 $(lispsource)language/hebrew.elc \
168 $(lispsource)language/indian.elc \ 168 $(lispsource)language/indian.elc \
169 $(lispsource)language/japanese.elc \ 169 $(lispsource)language/japanese.elc \
170 $(lispsource)language/korean.elc \ 170 $(lispsource)language/korean.elc \
171 $(lispsource)language/lao.elc \ 171 $(lispsource)language/lao.elc \
172 $(lispsource)language/thai.elc \ 172 $(lispsource)language/thai.elc \
173 $(lispsource)language/tibetan.elc \ 173 $(lispsource)language/tibetan.elc \
174 $(lispsource)language/vietnamese.elc \ 174 $(lispsource)language/vietnamese.elc \
175 $(lispsource)language/misc-lang.elc \ 175 $(lispsource)language/misc-lang.elc \
176 $(lispsource)textmodes/page.elc \ 176 $(lispsource)textmodes/page.elc \
177 $(lispsource)textmodes/paragraphs.elc \ 177 $(lispsource)textmodes/paragraphs.elc \
178 $(lispsource)paths.el \ 178 $(lispsource)paths.el \
179 $(lispsource)register.elc \ 179 $(lispsource)register.elc \
180 $(lispsource)replace.elc \ 180 $(lispsource)replace.elc \
181 $(lispsource)simple.elc \ 181 $(lispsource)simple.elc \
182 $(lispsource)startup.elc \ 182 $(lispsource)startup.elc \
183 $(lispsource)subr.elc \ 183 $(lispsource)subr.elc \
184 $(lispsource)textmodes/text-mode.elc \ 184 $(lispsource)textmodes/text-mode.elc \
185 $(lispsource)vc-hooks.elc \ 185 $(lispsource)vc-hooks.elc \
186 $(lispsource)ediff-hook.elc \ 186 $(lispsource)ediff-hook.elc \
187 $(VMS_SUPPORT) \ 187 $(VMS_SUPPORT) \
188 $(MSDOS_SUPPORT) \ 188 $(MSDOS_SUPPORT) \
189 $(WINNT_SUPPORT) \ 189 $(WINNT_SUPPORT) \
190 $(lispsource)window.elc \ 190 $(lispsource)window.elc \
191 $(lispsource)version.el 191 $(lispsource)version.el
192 192
193 193
194DOC = DOC 194DOC = DOC
195$(DOC): $(BLD)/make-docfile.exe 195$(DOC): $(BLD)/make-docfile.exe
196 - $(DEL) $(DOC) 196 - $(DEL) $(DOC)
197 "./$(BLD)/make-docfile" -d ../src $(obj) > $(DOC) 197 "./$(BLD)/make-docfile" -d ../src $(obj) > $(DOC)
198 "./$(BLD)/make-docfile" -d ../src $(lisp) >> $(DOC) 198 "./$(BLD)/make-docfile" -d ../src $(lisp) >> $(DOC)
199 $(CP) $(DOC) ../etc/DOC-X 199 $(CP) $(DOC) ../etc/DOC-X
200 - mkdir "../src/$(OBJDIR)" 200 - mkdir "../src/$(OBJDIR)"
201 - mkdir "../src/$(OBJDIR)/etc" 201 - mkdir "../src/$(OBJDIR)/etc"
202 $(CP) $(DOC) ../src/$(OBJDIR)/etc/DOC-X 202 $(CP) $(DOC) ../src/$(OBJDIR)/etc/DOC-X
203 203
204{$(BLD)}.$(O){$(BLD)}.exe: 204{$(BLD)}.$(O){$(BLD)}.exe:
205 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $*.$(O) $(LIBS) 205 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $*.$(O) $(LIBS)
206 206
207# 207#
208# Build the executables 208# Build the executables
209# 209#
210all: $(BLD) $(ALL) $(DOC) 210all: $(BLD) $(ALL) $(DOC)
211 211
212# 212#
213# Assuming INSTALL_DIR is defined, build and install emacs in it. 213# Assuming INSTALL_DIR is defined, build and install emacs in it.
214# 214#
215INSTALL_FILES = $(ALL) 215INSTALL_FILES = $(ALL)
216install: $(INSTALL_FILES) 216install: $(INSTALL_FILES)
217 - mkdir "$(INSTALL_DIR)/bin" 217 - mkdir "$(INSTALL_DIR)/bin"
218 $(CP) $(BLD)/etags.exe $(INSTALL_DIR)/bin 218 $(CP) $(BLD)/etags.exe $(INSTALL_DIR)/bin
219 $(CP) $(BLD)/ctags.exe $(INSTALL_DIR)/bin 219 $(CP) $(BLD)/ctags.exe $(INSTALL_DIR)/bin
220 $(CP) $(BLD)/hexl.exe $(INSTALL_DIR)/bin 220 $(CP) $(BLD)/hexl.exe $(INSTALL_DIR)/bin
221 $(CP) $(BLD)/movemail.exe $(INSTALL_DIR)/bin 221 $(CP) $(BLD)/movemail.exe $(INSTALL_DIR)/bin
222 $(CP) $(BLD)/fakemail.exe $(INSTALL_DIR)/bin 222 $(CP) $(BLD)/fakemail.exe $(INSTALL_DIR)/bin
223 - mkdir "$(INSTALL_DIR)/etc" 223 - mkdir "$(INSTALL_DIR)/etc"
224 $(CP) $(DOC) $(INSTALL_DIR)/etc 224 $(CP) $(DOC) $(INSTALL_DIR)/etc
225 225
226# 226#
227# Maintenance 227# Maintenance
228# 228#
229clean: 229clean:
230 - $(DEL) *~ *.pdb DOC* 230 - $(DEL) *~ *.pdb DOC*
231 - $(DEL) ctags.c 231 - $(DEL) ctags.c
232 - $(DEL_TREE) $(OBJDIR) 232 - $(DEL_TREE) $(OBJDIR)
233 233
234cleanall: clean 234cleanall: clean
235 - $(DEL_TREE) obj 235 - $(DEL_TREE) obj
236 - $(DEL_TREE) obj-spd 236 - $(DEL_TREE) obj-spd
237 - $(DEL_TREE) oo 237 - $(DEL_TREE) oo
238 - $(DEL_TREE) oo-spd 238 - $(DEL_TREE) oo-spd
239 239
240# 240#
241# Headers we would preprocess if we could. 241# Headers we would preprocess if we could.
242# 242#
243../src/config.h: ../nt/$(CONFIG_H) 243../src/config.h: ../nt/$(CONFIG_H)
244 $(CP) $(ALL_DEPS) $@ 244 $(CP) $(ALL_DEPS) $@
245../src/paths.h: ../nt/paths.h 245../src/paths.h: ../nt/paths.h
246 $(CP) $(ALL_DEPS) $@ 246 $(CP) $(ALL_DEPS) $@
247 247
248### DEPENDENCIES ### 248### DEPENDENCIES ###
249 249
250EMACS_ROOT = .. 250EMACS_ROOT = ..
251SRC = . 251SRC = .
252 252
253$(BLD)/alloca.$(O) : \ 253$(BLD)/alloca.$(O) : \
254 $(SRC)/alloca.c \ 254 $(SRC)/alloca.c \
255 $(EMACS_ROOT)/src/s/ms-w32.h \ 255 $(EMACS_ROOT)/src/s/ms-w32.h \
256 $(EMACS_ROOT)/src/m/intel386.h \ 256 $(EMACS_ROOT)/src/m/intel386.h \
257 $(EMACS_ROOT)/src/config.h \ 257 $(EMACS_ROOT)/src/config.h \
258 $(EMACS_ROOT)/src/blockinput.h 258 $(EMACS_ROOT)/src/blockinput.h
259 259
260$(BLD)/b2m.$(O) : \ 260$(BLD)/b2m.$(O) : \
261 $(SRC)/b2m.c \ 261 $(SRC)/b2m.c \
262 $(EMACS_ROOT)/src/s/ms-w32.h \ 262 $(EMACS_ROOT)/src/s/ms-w32.h \
263 $(EMACS_ROOT)/src/m/intel386.h \ 263 $(EMACS_ROOT)/src/m/intel386.h \
264 $(EMACS_ROOT)/lib-src/../src/config.h 264 $(EMACS_ROOT)/lib-src/../src/config.h
265 265
266$(BLD)/ctags.$(O) : \ 266$(BLD)/ctags.$(O) : \
267 $(SRC)/ctags.c \ 267 $(SRC)/ctags.c \
268 $(EMACS_ROOT)/nt/inc/sys/param.h \ 268 $(EMACS_ROOT)/nt/inc/sys/param.h \
269 $(EMACS_ROOT)/src/s/ms-w32.h \ 269 $(EMACS_ROOT)/src/s/ms-w32.h \
270 $(EMACS_ROOT)/src/m/intel386.h \ 270 $(EMACS_ROOT)/src/m/intel386.h \
271 $(EMACS_ROOT)/lib-src/../src/config.h \ 271 $(EMACS_ROOT)/lib-src/../src/config.h \
272 $(SRC)/ntlib.h \ 272 $(SRC)/ntlib.h \
273 $(SRC)/getopt.h 273 $(SRC)/getopt.h
274 274
275$(BLD)/cvtmail.$(O) : \ 275$(BLD)/cvtmail.$(O) : \
276 $(SRC)/cvtmail.c 276 $(SRC)/cvtmail.c
277 277
278$(BLD)/digest-doc.$(O) : \ 278$(BLD)/digest-doc.$(O) : \
279 $(SRC)/digest-doc.c 279 $(SRC)/digest-doc.c
280 280
281$(BLD)/emacsclient.$(O) : \ 281$(BLD)/emacsclient.$(O) : \
282 $(SRC)/emacsclient.c \ 282 $(SRC)/emacsclient.c \
283 $(EMACS_ROOT)/src/s/ms-w32.h \ 283 $(EMACS_ROOT)/src/s/ms-w32.h \
284 $(EMACS_ROOT)/src/m/intel386.h \ 284 $(EMACS_ROOT)/src/m/intel386.h \
285 $(EMACS_ROOT)/lib-src/../src/config.h 285 $(EMACS_ROOT)/lib-src/../src/config.h
286 286
287$(BLD)/emacsserver.$(O) : \ 287$(BLD)/emacsserver.$(O) : \
288 $(SRC)/emacsserver.c \ 288 $(SRC)/emacsserver.c \
289 $(EMACS_ROOT)/src/s/ms-w32.h \ 289 $(EMACS_ROOT)/src/s/ms-w32.h \
290 $(EMACS_ROOT)/src/m/intel386.h \ 290 $(EMACS_ROOT)/src/m/intel386.h \
291 $(EMACS_ROOT)/lib-src/../src/config.h \ 291 $(EMACS_ROOT)/lib-src/../src/config.h \
292 $(EMACS_ROOT)/nt/inc/sys/file.h 292 $(EMACS_ROOT)/nt/inc/sys/file.h
293 293
294$(BLD)/emacstool.$(O) : \ 294$(BLD)/emacstool.$(O) : \
295 $(SRC)/emacstool.c \ 295 $(SRC)/emacstool.c \
296 $(EMACS_ROOT)/nt/inc/sys/file.h 296 $(EMACS_ROOT)/nt/inc/sys/file.h
297 297
298$(BLD)/etags.$(O) : \ 298$(BLD)/etags.$(O) : \
299 $(SRC)/etags.c \ 299 $(SRC)/etags.c \
300 $(EMACS_ROOT)/nt/inc/sys/param.h \ 300 $(EMACS_ROOT)/nt/inc/sys/param.h \
301 $(EMACS_ROOT)/src/s/ms-w32.h \ 301 $(EMACS_ROOT)/src/s/ms-w32.h \
302 $(EMACS_ROOT)/src/m/intel386.h \ 302 $(EMACS_ROOT)/src/m/intel386.h \
303 $(EMACS_ROOT)/lib-src/../src/config.h \ 303 $(EMACS_ROOT)/lib-src/../src/config.h \
304 $(SRC)/ntlib.h \ 304 $(SRC)/ntlib.h \
305 $(SRC)/getopt.h 305 $(SRC)/getopt.h
306 306
307$(BLD)/fakemail.$(O) : \ 307$(BLD)/fakemail.$(O) : \
308 $(SRC)/fakemail.c \ 308 $(SRC)/fakemail.c \
309 $(SRC)/ntlib.h \ 309 $(SRC)/ntlib.h \
310 $(EMACS_ROOT)/src/s/ms-w32.h \ 310 $(EMACS_ROOT)/src/s/ms-w32.h \
311 $(EMACS_ROOT)/src/m/intel386.h \ 311 $(EMACS_ROOT)/src/m/intel386.h \
312 $(EMACS_ROOT)/lib-src/../src/config.h \ 312 $(EMACS_ROOT)/lib-src/../src/config.h \
313 $(EMACS_ROOT)/nt/inc/pwd.h 313 $(EMACS_ROOT)/nt/inc/pwd.h
314 314
315$(BLD)/getdate.$(O) : \ 315$(BLD)/getdate.$(O) : \
316 $(SRC)/getdate.c \ 316 $(SRC)/getdate.c \
317 $(EMACS_ROOT)/src/s/ms-w32.h \ 317 $(EMACS_ROOT)/src/s/ms-w32.h \
318 $(EMACS_ROOT)/src/m/intel386.h \ 318 $(EMACS_ROOT)/src/m/intel386.h \
319 $(EMACS_ROOT)/src/config.h \ 319 $(EMACS_ROOT)/src/config.h \
320 $(MSTOOLS_SYS)/types.h 320 $(MSTOOLS_SYS)/types.h
321 321
322$(BLD)/getopt.$(O) : \ 322$(BLD)/getopt.$(O) : \
323 $(SRC)/getopt.c \ 323 $(SRC)/getopt.c \
324 $(EMACS_ROOT)/src/s/ms-w32.h \ 324 $(EMACS_ROOT)/src/s/ms-w32.h \
325 $(EMACS_ROOT)/src/m/intel386.h \ 325 $(EMACS_ROOT)/src/m/intel386.h \
326 $(EMACS_ROOT)/src/config.h \ 326 $(EMACS_ROOT)/src/config.h \
327 $(SRC)/ntlib.h \ 327 $(SRC)/ntlib.h \
328 $(SRC)/getopt.h 328 $(SRC)/getopt.h
329 329
330$(BLD)/getopt1.$(O) : \ 330$(BLD)/getopt1.$(O) : \
331 $(SRC)/getopt1.c \ 331 $(SRC)/getopt1.c \
332 $(EMACS_ROOT)/src/s/ms-w32.h \ 332 $(EMACS_ROOT)/src/s/ms-w32.h \
333 $(EMACS_ROOT)/src/m/intel386.h \ 333 $(EMACS_ROOT)/src/m/intel386.h \
334 $(EMACS_ROOT)/src/config.h \ 334 $(EMACS_ROOT)/src/config.h \
335 $(SRC)/getopt.h 335 $(SRC)/getopt.h
336 336
337$(BLD)/hexl.$(O) : \ 337$(BLD)/hexl.$(O) : \
338 $(SRC)/hexl.c 338 $(SRC)/hexl.c
339 339
340$(BLD)/leditcfns.$(O) : \ 340$(BLD)/leditcfns.$(O) : \
341 $(SRC)/leditcfns.c 341 $(SRC)/leditcfns.c
342 342
343$(BLD)/make-docfile.$(O) : \ 343$(BLD)/make-docfile.$(O) : \
344 $(SRC)/make-docfile.c \ 344 $(SRC)/make-docfile.c \
345 $(EMACS_ROOT)/src/config.h 345 $(EMACS_ROOT)/src/config.h
346 346
347$(BLD)/make-path.$(O) : \ 347$(BLD)/make-path.$(O) : \
348 $(SRC)/make-path.c 348 $(SRC)/make-path.c
349 349
350$(BLD)/movemail.$(O) : \ 350$(BLD)/movemail.$(O) : \
351 $(SRC)/movemail.c \ 351 $(SRC)/movemail.c \
352 $(EMACS_ROOT)/src/s/ms-w32.h \ 352 $(EMACS_ROOT)/src/s/ms-w32.h \
353 $(EMACS_ROOT)/src/m/intel386.h \ 353 $(EMACS_ROOT)/src/m/intel386.h \
354 $(EMACS_ROOT)/lib-src/../src/config.h \ 354 $(EMACS_ROOT)/lib-src/../src/config.h \
355 $(EMACS_ROOT)/nt/inc/sys/file.h \ 355 $(EMACS_ROOT)/nt/inc/sys/file.h \
356 $(EMACS_ROOT)/src/vmsproc.h \ 356 $(EMACS_ROOT)/src/vmsproc.h \
357 $(EMACS_ROOT)/lib-src/../src/syswait.h \ 357 $(EMACS_ROOT)/lib-src/../src/syswait.h \
358 $(EMACS_ROOT)/nt/inc/pwd.h \ 358 $(EMACS_ROOT)/nt/inc/pwd.h \
359 $(SRC)/ntlib.h 359 $(SRC)/ntlib.h
360 $(CC) $(CFLAGS) -DUSG $(CC_OUT)$@ movemail.c 360 $(CC) $(CFLAGS) -DUSG $(CC_OUT)$@ movemail.c
361 361
362$(BLD)/ntlib.$(O) : \ 362$(BLD)/ntlib.$(O) : \
363 $(SRC)/ntlib.c \ 363 $(SRC)/ntlib.c \
364 $(SRC)/ntlib.h \ 364 $(SRC)/ntlib.h \
365 $(EMACS_ROOT)/nt/inc/pwd.h 365 $(EMACS_ROOT)/nt/inc/pwd.h
366 366
367$(BLD)/pop.$(O) : \ 367$(BLD)/pop.$(O) : \
368 $(SRC)/pop.c \ 368 $(SRC)/pop.c \
369 $(SRC)/pop.h \ 369 $(SRC)/pop.h \
370 $(SRC)/ntlib.h 370 $(SRC)/ntlib.h
371 371
372$(BLD)/profile.$(O) : \ 372$(BLD)/profile.$(O) : \
373 $(SRC)/profile.c \ 373 $(SRC)/profile.c \
374 $(EMACS_ROOT)/src/s/ms-w32.h \ 374 $(EMACS_ROOT)/src/s/ms-w32.h \
375 $(EMACS_ROOT)/src/m/intel386.h \ 375 $(EMACS_ROOT)/src/m/intel386.h \
376 $(EMACS_ROOT)/lib-src/../src/config.h \ 376 $(EMACS_ROOT)/lib-src/../src/config.h \
377 $(EMACS_ROOT)/src/vmstime.h \ 377 $(EMACS_ROOT)/src/vmstime.h \
378 $(EMACS_ROOT)/lib-src/../src/systime.h 378 $(EMACS_ROOT)/lib-src/../src/systime.h
379 379
380$(BLD)/qsort.$(O) : \ 380$(BLD)/qsort.$(O) : \
381 $(SRC)/qsort.c 381 $(SRC)/qsort.c
382 382
383$(BLD)/sorted-doc.$(O) : \ 383$(BLD)/sorted-doc.$(O) : \
384 $(SRC)/sorted-doc.c 384 $(SRC)/sorted-doc.c
385 385
386$(BLD)/tcp.$(O) : \ 386$(BLD)/tcp.$(O) : \
387 $(SRC)/tcp.c 387 $(SRC)/tcp.c
388 388
389$(BLD)/test-distrib.$(O) : \ 389$(BLD)/test-distrib.$(O) : \
390 $(SRC)/test-distrib.c 390 $(SRC)/test-distrib.c
391 391
392$(BLD)/timer.$(O) : \ 392$(BLD)/timer.$(O) : \
393 $(SRC)/timer.c \ 393 $(SRC)/timer.c \
394 $(EMACS_ROOT)/src/s/ms-w32.h \ 394 $(EMACS_ROOT)/src/s/ms-w32.h \
395 $(EMACS_ROOT)/src/m/intel386.h \ 395 $(EMACS_ROOT)/src/m/intel386.h \
396 $(EMACS_ROOT)/lib-src/../src/config.h 396 $(EMACS_ROOT)/lib-src/../src/config.h
397 397
398$(BLD)/yow.$(O) : \ 398$(BLD)/yow.$(O) : \
399 $(SRC)/yow.c \ 399 $(SRC)/yow.c \
400 $(EMACS_ROOT)/lib-src/../src/paths.h 400 $(EMACS_ROOT)/lib-src/../src/paths.h
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in
index db9c23f6331..705f3e6aa0c 100644
--- a/lisp/makefile.w32-in
+++ b/lisp/makefile.w32-in
@@ -1,285 +1,285 @@
1# Hacked up Nmake makefile for GNU Emacs 1# Hacked up Nmake makefile for GNU Emacs
2# Geoff Voelker (voelker@cs.washington.edu) 2# Geoff Voelker (voelker@cs.washington.edu)
3# Copyright (c) 1994 Free Software Foundation, Inc. 3# Copyright (c) 1994 Free Software Foundation, Inc.
4# 4#
5# This file is part of GNU Emacs. 5# This file is part of GNU Emacs.
6# 6#
7# GNU Emacs is free software; you can redistribute it and/or modify 7# GNU Emacs is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by 8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2, or (at your option) 9# the Free Software Foundation; either version 2, or (at your option)
10# any later version. 10# any later version.
11# 11#
12# GNU Emacs is distributed in the hope that it will be useful, 12# GNU Emacs is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of 13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details. 15# GNU General Public License for more details.
16# 16#
17# You should have received a copy of the GNU General Public License 17# You should have received a copy of the GNU General Public License
18# along with GNU Emacs; see the file COPYING. If not, write to the 18# along with GNU Emacs; see the file COPYING. If not, write to the
19# Free Software Foundation, Inc., 59 Temple Place - Suite 330, 19# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20# Boston, MA 02111-1307, USA. 20# Boston, MA 02111-1307, USA.
21# 21#
22 22
23ALL = 23ALL =
24 24
25all: $(ALL) 25all: $(ALL)
26 26
27SQUOTE=' 27SQUOTE='
28# ' 28# '
29 29
30#lisp=$(MAKEDIR:\=/) 30#lisp=$(MAKEDIR:\=/)
31lisp=. 31lisp=.
32 32
33# You can specify a different executable on the make command line, 33# You can specify a different executable on the make command line,
34# e.g. "make EMACS=../src/emacs ...". 34# e.g. "make EMACS=../src/emacs ...".
35 35
36EMACS = "../bin/emacs.exe" 36EMACS = "../bin/emacs.exe"
37 37
38# Command line flags for Emacs. This must include --multibyte, 38# Command line flags for Emacs. This must include --multibyte,
39# otherwise some files will not compile. 39# otherwise some files will not compile.
40 40
41EMACSOPT = -batch --no-init-file --no-site-file --multibyte 41EMACSOPT = -batch --no-init-file --no-site-file --multibyte
42 42
43lisptagsfiles1 = $(lisp)/*.el 43lisptagsfiles1 = $(lisp)/*.el
44lisptagsfiles2 = $(lisp)/*/*.el 44lisptagsfiles2 = $(lisp)/*/*.el
45ETAGS = "../lib-src/$(BLD)/etags" 45ETAGS = "../lib-src/$(BLD)/etags"
46 46
47# Files which should not be compiled. 47# Files which should not be compiled.
48# - emacs-lisp/cl-specs.el: only contains `def-edebug-spec's so there's 48# - emacs-lisp/cl-specs.el: only contains `def-edebug-spec's so there's
49# no point compiling it, although it doesn't hurt. 49# no point compiling it, although it doesn't hurt.
50 50
51DONTCOMPILE = \ 51DONTCOMPILE = \
52 $(lisp)/bindings.el \ 52 $(lisp)/bindings.el \
53 $(lisp)/cus-load.el \ 53 $(lisp)/cus-load.el \
54 $(lisp)/cus-start.el \ 54 $(lisp)/cus-start.el \
55 $(lisp)/emacs-lisp/cl-specs.el \ 55 $(lisp)/emacs-lisp/cl-specs.el \
56 $(lisp)/eshell/esh-maint.el \ 56 $(lisp)/eshell/esh-maint.el \
57 $(lisp)/eshell/esh-groups.el \ 57 $(lisp)/eshell/esh-groups.el \
58 $(lisp)/finder-inf.el \ 58 $(lisp)/finder-inf.el \
59 $(lisp)/forms-d2.el \ 59 $(lisp)/forms-d2.el \
60 $(lisp)/forms-pass.el \ 60 $(lisp)/forms-pass.el \
61 $(lisp)/generic-x.el \ 61 $(lisp)/generic-x.el \
62 $(lisp)/international/latin-1.el \ 62 $(lisp)/international/latin-1.el \
63 $(lisp)/international/latin-2.el \ 63 $(lisp)/international/latin-2.el \
64 $(lisp)/international/latin-3.el \ 64 $(lisp)/international/latin-3.el \
65 $(lisp)/international/latin-4.el \ 65 $(lisp)/international/latin-4.el \
66 $(lisp)/international/latin-5.el \ 66 $(lisp)/international/latin-5.el \
67 $(lisp)/international/latin-8.el \ 67 $(lisp)/international/latin-8.el \
68 $(lisp)/international/latin-9.el \ 68 $(lisp)/international/latin-9.el \
69 $(lisp)/international/mule-conf.el \ 69 $(lisp)/international/mule-conf.el \
70 $(lisp)/loaddefs.el \ 70 $(lisp)/loaddefs.el \
71 $(lisp)/loadup.el \ 71 $(lisp)/loadup.el \
72 $(lisp)/mail/blessmail.el \ 72 $(lisp)/mail/blessmail.el \
73 $(lisp)/mail/sc.el \ 73 $(lisp)/mail/sc.el \
74 $(lisp)/patcomp.el \ 74 $(lisp)/patcomp.el \
75 $(lisp)/paths.el \ 75 $(lisp)/paths.el \
76 $(lisp)/play/bruce.el \ 76 $(lisp)/play/bruce.el \
77 $(lisp)/subdirs.el \ 77 $(lisp)/subdirs.el \
78 $(lisp)/term/internal.el \ 78 $(lisp)/term/internal.el \
79 $(lisp)/version.el 79 $(lisp)/version.el
80 80
81# Files to compile before others during a bootstrap. This is done 81# Files to compile before others during a bootstrap. This is done
82# to speed up the bootstrap process. 82# to speed up the bootstrap process.
83 83
84COMPILE_FIRST = \ 84COMPILE_FIRST = \
85 $(lisp)/emacs-lisp/byte-opt.el \ 85 $(lisp)/emacs-lisp/byte-opt.el \
86 $(lisp)/emacs-lisp/bytecomp.el \ 86 $(lisp)/emacs-lisp/bytecomp.el \
87 $(lisp)/subr.el 87 $(lisp)/subr.el
88 88
89# The actual Emacs command run in the targets below. 89# The actual Emacs command run in the targets below.
90 90
91emacs = $(EMACS) $(EMACSOPT) 91emacs = $(EMACS) $(EMACSOPT)
92 92
93# Common command to find subdirectories 93# Common command to find subdirectories
94 94
95setwins=subdirs=`find $$wd -type d -print`; \ 95setwins=subdirs=`find $$wd -type d -print`; \
96 for file in $$subdirs; do \ 96 for file in $$subdirs; do \
97 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \ 97 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \
98 *) wins="$$wins $$file" ;; \ 98 *) wins="$$wins $$file" ;; \
99 esac; \ 99 esac; \
100 done 100 done
101 101
102# Have to define the list of subdirs manually when not using sh. 102# Have to define the list of subdirs manually when not using sh.
103WINS=\ 103WINS=\
104 calendar \ 104 calendar \
105 emacs-lisp \ 105 emacs-lisp \
106 emulation \ 106 emulation \
107 eshell \ 107 eshell \
108 gnus \ 108 gnus \
109 international \ 109 international \
110 language \ 110 language \
111 mail \ 111 mail \
112 net \ 112 net \
113 play \ 113 play \
114 progmodes \ 114 progmodes \
115 term \ 115 term \
116 textmodes 116 textmodes
117 117
118doit: 118doit:
119 119
120cus-load.el: 120cus-load.el:
121 touch $@ 121 touch $@
122custom-deps: cus-load.el doit 122custom-deps: cus-load.el doit
123 @echo Directories: $(WINS) 123 @echo Directories: $(WINS)
124 $(emacs) -l cus-dep --eval $(ARGQUOTE)(setq find-file-hooks nil)$(ARGQUOTE) -f custom-make-dependencies $(lisp) $(WINS) 124 $(emacs) -l cus-dep --eval $(ARGQUOTE)(setq find-file-hooks nil)$(ARGQUOTE) -f custom-make-dependencies $(lisp) $(WINS)
125 125
126finder-inf.el: 126finder-inf.el:
127 echo (provide $(SQUOTE)finder-inf)>> $@ 127 echo (provide $(SQUOTE)finder-inf)>> $@
128 128
129finder-data: finder-inf.el doit 129finder-data: finder-inf.el doit
130 @echo Directories: $(WINS) 130 @echo Directories: $(WINS)
131 $(emacs) -l finder -f finder-compile-keywords-make-dist $(lisp) $(WINS) 131 $(emacs) -l finder -f finder-compile-keywords-make-dist $(lisp) $(WINS)
132 132
133loaddefs.el: 133loaddefs.el:
134 echo ;;; loaddefs.el --- automatically extracted autoloads> $@ 134 echo ;;; loaddefs.el --- automatically extracted autoloads> $@
135 echo ;;; Code:>> $@ 135 echo ;;; Code:>> $@
136 echo >> $@ 136 echo >> $@
137 echo ;;; Local Variables:>> $@ 137 echo ;;; Local Variables:>> $@
138 echo ;;; version-control: never>> $@ 138 echo ;;; version-control: never>> $@
139 echo ;;; no-byte-compile: t>> $@ 139 echo ;;; no-byte-compile: t>> $@
140 echo ;;; no-update-autoloads: t>> $@ 140 echo ;;; no-update-autoloads: t>> $@
141 echo ;;; End:>> $@ 141 echo ;;; End:>> $@
142 echo ;;; loaddefs.el ends here>> $@ 142 echo ;;; loaddefs.el ends here>> $@
143 143
144autoloads: loaddefs.el doit 144autoloads: loaddefs.el doit
145 @echo Directories: $(WINS) 145 @echo Directories: $(WINS)
146 set EMACSLOADPATH=$(lisp) 146 set EMACSLOADPATH=$(lisp)
147 $(SETLOADPATH) $(emacs) -l autoload --eval $(ARGQUOTE)(setq find-file-hooks nil generated-autoload-file $(DQUOTE)$(lisp)/loaddefs.el$(DQUOTE))$(ARGQUOTE) -f batch-update-autoloads $(lisp) $(WINS) 147 $(SETLOADPATH) $(emacs) -l autoload --eval $(ARGQUOTE)(setq find-file-hooks nil generated-autoload-file $(DQUOTE)$(lisp)/loaddefs.el$(DQUOTE))$(ARGQUOTE) -f batch-update-autoloads $(lisp) $(WINS)
148 148
149subdirs.el: 149subdirs.el:
150 $(MAKE) $(MFLAGS) update-subdirs 150 $(MAKE) $(MFLAGS) update-subdirs
151 151
152# Need separate version for sh and native cmd.exe 152# Need separate version for sh and native cmd.exe
153update-subdirs: update-subdirs-$(SHELLTYPE) 153update-subdirs: update-subdirs-$(SHELLTYPE)
154 154
155update-subdirs-CMD: doit 155update-subdirs-CMD: doit
156 @set QWINS= 156 @set QWINS=
157 @for %d in ($(WINS)) do if not (%d)==(term) set QWINS=%QWINS% "%d" 157 @for %d in ($(WINS)) do if not (%d)==(term) set QWINS=%QWINS% "%d"
158 echo ;; In load-path, after this directory should come> subdirs.el 158 echo ;; In load-path, after this directory should come> subdirs.el
159 echo ;; certain of its subdirectories. Here we specify them.>> subdirs.el 159 echo ;; certain of its subdirectories. Here we specify them.>> subdirs.el
160 echo (normal-top-level-add-to-load-path $(SQUOTE)(%QWINS%))>> subdirs.el 160 echo (normal-top-level-add-to-load-path $(SQUOTE)(%QWINS%))>> subdirs.el
161 161
162update-subdirs-SH: doit 162update-subdirs-SH: doit
163 wd=$(lisp); $(setwins); \ 163 wd=$(lisp); $(setwins); \
164 for file in $$wins; do \ 164 for file in $$wins; do \
165 $(srcdir)/update-subdirs $$file; \ 165 $(srcdir)/update-subdirs $$file; \
166 done; 166 done;
167 167
168updates: update-subdirs autoloads finder-data custom-deps 168updates: update-subdirs autoloads finder-data custom-deps
169 169
170TAGS: $(lisptagsfiles1) $(lisptagsfiles2) 170TAGS: $(lisptagsfiles1) $(lisptagsfiles2)
171 $(ETAGS) $(lisptagsfiles1) $(lisptagsfiles2) 171 $(ETAGS) $(lisptagsfiles1) $(lisptagsfiles2)
172 172
173TAGS-LISP: $(lispsource)$(lisptagsfiles1) $(lispsource)$(lisptagsfiles2) 173TAGS-LISP: $(lispsource)$(lisptagsfiles1) $(lispsource)$(lisptagsfiles2)
174 $(ETAGS) -o TAGS-LISP $(lispsource)$(lisptagsfiles1) $(lispsource)$(lisptagsfiles2) 174 $(ETAGS) -o TAGS-LISP $(lispsource)$(lisptagsfiles1) $(lispsource)$(lisptagsfiles2)
175 175
176.el.elc: 176.el.elc:
177 set EMACSLOADPATH=$(lisp) 177 set EMACSLOADPATH=$(lisp)
178 -$(SETLOADPATH) $(emacs) -f batch-byte-compile $< 178 -$(SETLOADPATH) $(emacs) -f batch-byte-compile $<
179 179
180$(DONTCOMPILE:.el=.elc): 180$(DONTCOMPILE:.el=.elc):
181 -$(DEL) $@ 181 -$(DEL) $@
182 182
183# Compile all Lisp files, except those from DONTCOMPILE. This 183# Compile all Lisp files, except those from DONTCOMPILE. This
184# compiles files unconditionally. All .elc files are made writable 184# compiles files unconditionally. All .elc files are made writable
185# before compilation in case we checked out read-only (CVS option -r). 185# before compilation in case we checked out read-only (CVS option -r).
186# Files MUST be compiled one by one. If we compile several files in a 186# Files MUST be compiled one by one. If we compile several files in a
187# row we can't make sure that the compilation environment is clean. 187# row we can't make sure that the compilation environment is clean.
188# We also set the load-path of the Emacs used for compilation to the 188# We also set the load-path of the Emacs used for compilation to the
189# current directory and its subdirectories, to make sure require's and 189# current directory and its subdirectories, to make sure require's and
190# load's in the files being compiled find the right files. 190# load's in the files being compiled find the right files.
191 191
192# Need separate version for sh and native cmd.exe 192# Need separate version for sh and native cmd.exe
193compile-files: subdirs.el compile-files-$(SHELLTYPE) doit 193compile-files: subdirs.el compile-files-$(SHELLTYPE) doit
194 194
195compile-files-CMD: 195compile-files-CMD:
196 set EMACSLOADPATH=$(lisp) 196 set EMACSLOADPATH=$(lisp)
197 -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g 197 -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g
198 for %f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %f 198 for %f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %f
199 for %f in ($(lisp) $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g 199 for %f in ($(lisp) $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g
200 200
201compile-files-SH: 201compile-files-SH:
202# for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done 202# for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done
203 for el in $(COMPILE_FIRST); do \ 203 for el in $(COMPILE_FIRST); do \
204 echo Compiling $$el; \ 204 echo Compiling $$el; \
205 EMACSLOADPATH=$(lisp) $(emacs) -f batch-byte-compile $$el; \ 205 EMACSLOADPATH=$(lisp) $(emacs) -f batch-byte-compile $$el; \
206 done 206 done
207 for dir in $(lisp) $(WINS); do \ 207 for dir in $(lisp) $(WINS); do \
208 for el in $$dir/*.el; do \ 208 for el in $$dir/*.el; do \
209 echo Compiling $$el; \ 209 echo Compiling $$el; \
210 EMACSLOADPATH=$(lisp) $(emacs) -f batch-byte-compile $$el; \ 210 EMACSLOADPATH=$(lisp) $(emacs) -f batch-byte-compile $$el; \
211 done; \ 211 done; \
212 done 212 done
213 213
214# Backup compiled Lisp files in elc.tar.gz. If that file already 214# Backup compiled Lisp files in elc.tar.gz. If that file already
215# exists, make a backup of it. 215# exists, make a backup of it.
216 216
217backup-compiled-files: 217backup-compiled-files:
218 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~ 218 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~
219 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc 219 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc
220 220
221# Compile Lisp files, but save old compiled files first. 221# Compile Lisp files, but save old compiled files first.
222 222
223compile: backup-compiled-files compile-files 223compile: backup-compiled-files compile-files
224 224
225# Recompile all Lisp files which are newer than their .elc files. 225# Recompile all Lisp files which are newer than their .elc files.
226# Note that this doesn't create .elc files. It only recompiles if an 226# Note that this doesn't create .elc files. It only recompiles if an
227# .elc is present. 227# .elc is present.
228 228
229recompile: doit 229recompile: doit
230 set EMACSLOADPATH=$(lisp) 230 set EMACSLOADPATH=$(lisp)
231 $(SETLOADPATH) $(emacs) -f batch-byte-recompile-directory . 231 $(SETLOADPATH) $(emacs) -f batch-byte-recompile-directory .
232 232
233# Prepare a bootstrap in the lisp subdirectory. Build loaddefs.el, 233# Prepare a bootstrap in the lisp subdirectory. Build loaddefs.el,
234# because it's not sure it's up-to-date, and if it's not, that might 234# because it's not sure it's up-to-date, and if it's not, that might
235# lead to errors during the bootstrap because something fails to 235# lead to errors during the bootstrap because something fails to
236# autoload as expected. Remove compiled Lisp files so that 236# autoload as expected. Remove compiled Lisp files so that
237# bootstrap-emacs will be built from sources only. 237# bootstrap-emacs will be built from sources only.
238 238
239# Need separate version for sh and native cmd.exe 239# Need separate version for sh and native cmd.exe
240bootstrap-clean: bootstrap-clean-$(SHELLTYPE) 240bootstrap-clean: bootstrap-clean-$(SHELLTYPE)
241 241
242bootstrap-clean-CMD: 242bootstrap-clean-CMD:
243 if exist $(EMACS) $(MAKE) $(MFLAGS) autoloads 243 if exist $(EMACS) $(MAKE) $(MFLAGS) autoloads
244 -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @$(DEL) %g 244 -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @$(DEL) %g
245 245
246bootstrap-clean-SH: 246bootstrap-clean-SH:
247 if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi 247 if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi
248 -rm -f $(lisp)/*.elc $(lisp)/*/*.elc 248 -rm -f $(lisp)/*.elc $(lisp)/*/*.elc
249 249
250# Generate/update files for the bootstrap process. 250# Generate/update files for the bootstrap process.
251 251
252bootstrap: autoloads compile-files custom-deps 252bootstrap: autoloads compile-files custom-deps
253 253
254# 254#
255# Assuming INSTALL_DIR is defined, copy the elisp files to it 255# Assuming INSTALL_DIR is defined, copy the elisp files to it
256# Windows 95 makes this harder than it should be. 256# Windows 95 makes this harder than it should be.
257# 257#
258install: 258install:
259 - mkdir "$(INSTALL_DIR)/lisp" 259 - mkdir "$(INSTALL_DIR)/lisp"
260 - $(DEL) ../same-dir.tst 260 - $(DEL) ../same-dir.tst
261 - $(DEL) "$(INSTALL_DIR)/same-dir.tst" 261 - $(DEL) "$(INSTALL_DIR)/same-dir.tst"
262 echo SameDirTest > "$(INSTALL_DIR)/same-dir.tst" 262 echo SameDirTest > "$(INSTALL_DIR)/same-dir.tst"
263#ifdef COPY_LISP_SOURCE 263#ifdef COPY_LISP_SOURCE
264 $(IFNOTSAMEDIR) $(CP_DIR) . "$(INSTALL_DIR)/lisp" $(ENDIF) 264 $(IFNOTSAMEDIR) $(CP_DIR) . "$(INSTALL_DIR)/lisp" $(ENDIF)
265#else 265#else
266# $(IFNOTSAMEDIR) $(CP_DIR) *.elc "$(INSTALL_DIR)/lisp" $(ENDIF) 266# $(IFNOTSAMEDIR) $(CP_DIR) *.elc "$(INSTALL_DIR)/lisp" $(ENDIF)
267# $(IFNOTSAMEDIR) $(CP) cus-load.el "$(INSTALL_DIR)/lisp" $(ENDIF) 267# $(IFNOTSAMEDIR) $(CP) cus-load.el "$(INSTALL_DIR)/lisp" $(ENDIF)
268# $(IFNOTSAMEDIR) $(CP) forms*.el "$(INSTALL_DIR)/lisp" $(ENDIF) 268# $(IFNOTSAMEDIR) $(CP) forms*.el "$(INSTALL_DIR)/lisp" $(ENDIF)
269# $(IFNOTSAMEDIR) $(CP) patcomp.el "$(INSTALL_DIR)/lisp" $(ENDIF) 269# $(IFNOTSAMEDIR) $(CP) patcomp.el "$(INSTALL_DIR)/lisp" $(ENDIF)
270# $(IFNOTSAMEDIR) $(CP) subdirs.el "$(INSTALL_DIR)/lisp" $(ENDIF) 270# $(IFNOTSAMEDIR) $(CP) subdirs.el "$(INSTALL_DIR)/lisp" $(ENDIF)
271# $(IFNOTSAMEDIR) $(CP) version.el "$(INSTALL_DIR)/lisp" $(ENDIF) 271# $(IFNOTSAMEDIR) $(CP) version.el "$(INSTALL_DIR)/lisp" $(ENDIF)
272# $(IFNOTSAMEDIR) $(CP) mail/blessmail.el "$(INSTALL_DIR)/lisp/mail" $(ENDIF) 272# $(IFNOTSAMEDIR) $(CP) mail/blessmail.el "$(INSTALL_DIR)/lisp/mail" $(ENDIF)
273# $(IFNOTSAMEDIR) $(CP) mail/sc.el "$(INSTALL_DIR)/lisp/mail" $(ENDIF) 273# $(IFNOTSAMEDIR) $(CP) mail/sc.el "$(INSTALL_DIR)/lisp/mail" $(ENDIF)
274# $(IFNOTSAMEDIR) $(CP) play/bruce.el "$(INSTALL_DIR)/lisp/play" $(ENDIF) 274# $(IFNOTSAMEDIR) $(CP) play/bruce.el "$(INSTALL_DIR)/lisp/play" $(ENDIF)
275# $(IFNOTSAMEDIR) $(CP) international/latin-*.el "$(INSTALL_DIR)/lisp/international" $(ENDIF) 275# $(IFNOTSAMEDIR) $(CP) international/latin-*.el "$(INSTALL_DIR)/lisp/international" $(ENDIF)
276# $(IFNOTSAMEDIR) $(CP) international/mule-conf.el "$(INSTALL_DIR)/lisp/international" $(ENDIF) 276# $(IFNOTSAMEDIR) $(CP) international/mule-conf.el "$(INSTALL_DIR)/lisp/international" $(ENDIF)
277#endif 277#endif
278 - $(DEL) ../same-dir.tst 278 - $(DEL) ../same-dir.tst
279 - $(DEL) "$(INSTALL_DIR)/same-dir.tst" 279 - $(DEL) "$(INSTALL_DIR)/same-dir.tst"
280 280
281# 281#
282# Maintenance 282# Maintenance
283# 283#
284clean: 284clean:
285 - $(DEL) *~ 285 - $(DEL) *~
diff --git a/nt/makefile.w32-in b/nt/makefile.w32-in
index ccf86719dcc..8afa10fa62b 100644
--- a/nt/makefile.w32-in
+++ b/nt/makefile.w32-in
@@ -1,206 +1,206 @@
1# 1#
2# Top level makefile for building GNU Emacs on Windows NT 2# Top level makefile for building GNU Emacs on Windows NT
3# 3#
4# This file is part of GNU Emacs. 4# This file is part of GNU Emacs.
5# 5#
6# GNU Emacs is free software; you can redistribute it and/or modify 6# GNU Emacs is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by 7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2, or (at your option) 8# the Free Software Foundation; either version 2, or (at your option)
9# any later version. 9# any later version.
10# 10#
11# GNU Emacs is distributed in the hope that it will be useful, 11# GNU Emacs is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of 12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details. 14# GNU General Public License for more details.
15# 15#
16# You should have received a copy of the GNU General Public License 16# You should have received a copy of the GNU General Public License
17# along with GNU Emacs; see the file COPYING. If not, write to 17# along with GNU Emacs; see the file COPYING. If not, write to
18# the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 18# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19# Boston, MA 02111-1307, USA. 19# Boston, MA 02111-1307, USA.
20 20
21ALL = addpm ddeclient runemacs cmdproxy addsection preprep 21ALL = addpm ddeclient runemacs cmdproxy addsection preprep
22 22
23.PHONY: $(ALL) 23.PHONY: $(ALL)
24 24
25TRES = $(BLD)/emacs.res 25TRES = $(BLD)/emacs.res
26 26
27addpm: $(BLD) $(BLD)/addpm.exe 27addpm: $(BLD) $(BLD)/addpm.exe
28$(BLD)/addpm.exe: $(BLD)/addpm.$(O) 28$(BLD)/addpm.exe: $(BLD)/addpm.$(O)
29 $(LINK) $(LINK_OUT)$@ \ 29 $(LINK) $(LINK_OUT)$@ \
30 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32) 30 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)
31 31
32ddeclient: $(BLD) $(BLD)/ddeclient.exe 32ddeclient: $(BLD) $(BLD)/ddeclient.exe
33$(BLD)/ddeclient.exe: $(BLD)/ddeclient.$(O) 33$(BLD)/ddeclient.exe: $(BLD)/ddeclient.$(O)
34 $(LINK) $(LINK_OUT)$@ \ 34 $(LINK) $(LINK_OUT)$@ \
35 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32) 35 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)
36 36
37cmdproxy: $(BLD) $(BLD)/cmdproxy.exe 37cmdproxy: $(BLD) $(BLD)/cmdproxy.exe
38$(BLD)/cmdproxy.exe: $(BLD)/cmdproxy.$(O) 38$(BLD)/cmdproxy.exe: $(BLD)/cmdproxy.$(O)
39 $(LINK) $(LINK_OUT)$@ \ 39 $(LINK) $(LINK_OUT)$@ \
40 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(USER32) 40 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(USER32)
41 41
42addsection: $(BLD) $(BLD)/addsection.exe 42addsection: $(BLD) $(BLD)/addsection.exe
43$(BLD)/addsection.exe: $(BLD)/addsection.$(O) 43$(BLD)/addsection.exe: $(BLD)/addsection.$(O)
44 $(LINK) $(LINK_OUT)$@ \ 44 $(LINK) $(LINK_OUT)$@ \
45 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(USER32) 45 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(USER32)
46 46
47preprep: $(BLD) $(BLD)/preprep.exe 47preprep: $(BLD) $(BLD)/preprep.exe
48$(BLD)/preprep.exe: $(BLD)/preprep.$(O) 48$(BLD)/preprep.exe: $(BLD)/preprep.$(O)
49 $(LINK) $(LINK_OUT)$@ \ 49 $(LINK) $(LINK_OUT)$@ \
50 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) 50 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS)
51 51
52# 52#
53# The resource file. NT 3.10 requires the use of cvtres; even though 53# The resource file. NT 3.10 requires the use of cvtres; even though
54# it is not necessary on later versions, it is still ok to use it. 54# it is not necessary on later versions, it is still ok to use it.
55# 55#
56$(TRES): emacs.rc 56$(TRES): emacs.rc
57 $(RC) $(RC_OUT)$(BLD)/emacs.res $(ALL_DEPS) 57 $(RC) $(RC_OUT)$(BLD)/emacs.res $(ALL_DEPS)
58 58
59runemacs: $(BLD) $(BLD)/runemacs.exe 59runemacs: $(BLD) $(BLD)/runemacs.exe
60$(BLD)/runemacs.exe: $(BLD)/runemacs.$(O) $(TRES) 60$(BLD)/runemacs.exe: $(BLD)/runemacs.$(O) $(TRES)
61 $(LINK) $(LINK_OUT)$@ $(SUBSYSTEM_WINDOWS) \ 61 $(LINK) $(LINK_OUT)$@ $(SUBSYSTEM_WINDOWS) \
62 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32) 62 $(LINK_FLAGS) $(ALL_DEPS) $(BASE_LIBS) $(ADVAPI32) $(USER32)
63 63
64which-sh: 64which-sh:
65 @echo Using $(THE_SHELL) as shell. 65 @echo Using $(THE_SHELL) as shell.
66 66
67# 67#
68# Build emacs 68# Build emacs
69# 69#
70all: which-sh $(BLD) $(ALL) all-other-dirs-$(SHELLTYPE) 70all: which-sh $(BLD) $(ALL) all-other-dirs-$(SHELLTYPE)
71 71
72all-other-dirs-CMD: 72all-other-dirs-CMD:
73 cd ..\lib-src 73 cd ..\lib-src
74 $(MAKE) $(MFLAGS) all 74 $(MAKE) $(MFLAGS) all
75 cd ..\src 75 cd ..\src
76 $(MAKE) $(MFLAGS) all 76 $(MAKE) $(MFLAGS) all
77 cd ..\lisp 77 cd ..\lisp
78 $(MAKE) $(MFLAGS) all 78 $(MAKE) $(MFLAGS) all
79 cd ..\leim 79 cd ..\leim
80 $(MAKE) $(MFLAGS) all 80 $(MAKE) $(MFLAGS) all
81 cd ..\nt 81 cd ..\nt
82 82
83all-other-dirs-SH: 83all-other-dirs-SH:
84 $(MAKE) $(MFLAGS) -C ../lib-src all 84 $(MAKE) $(MFLAGS) -C ../lib-src all
85 $(MAKE) $(MFLAGS) -C ../src all 85 $(MAKE) $(MFLAGS) -C ../src all
86 $(MAKE) $(MFLAGS) -C ../lisp all 86 $(MAKE) $(MFLAGS) -C ../lisp all
87 $(MAKE) $(MFLAGS) -C ../leim all 87 $(MAKE) $(MFLAGS) -C ../leim all
88 88
89bootstrap: $(BLD) $(ALL) bootstrap-$(SHELLTYPE) 89bootstrap: $(BLD) $(ALL) bootstrap-$(SHELLTYPE)
90 90
91bootstrap-CMD: 91bootstrap-CMD:
92 cd ..\src 92 cd ..\src
93 $(MAKE) $(MFLAGS) bootstrap 93 $(MAKE) $(MFLAGS) bootstrap
94 $(MAKE) $(MFLAGS) bootstrap-clean 94 $(MAKE) $(MFLAGS) bootstrap-clean
95 cd ..\lisp 95 cd ..\lisp
96 $(MAKE) $(MFLAGS) bootstrap 96 $(MAKE) $(MFLAGS) bootstrap
97 cd ..\nt 97 cd ..\nt
98 98
99bootstrap-SH: 99bootstrap-SH:
100 $(MAKE) $(MFLAGS) -C ../src bootstrap 100 $(MAKE) $(MFLAGS) -C ../src bootstrap
101 $(MAKE) $(MFLAGS) -C ../src bootstrap-clean 101 $(MAKE) $(MFLAGS) -C ../src bootstrap-clean
102 $(MAKE) $(MFLAGS) -C ../lisp bootstrap 102 $(MAKE) $(MFLAGS) -C ../lisp bootstrap
103 103
104bootstrap-clean: bootstrap-clean-$(SHELLTYPE) 104bootstrap-clean: bootstrap-clean-$(SHELLTYPE)
105 105
106bootstrap-clean-CMD: 106bootstrap-clean-CMD:
107 cd ..\src 107 cd ..\src
108 $(MAKE) $(MFLAGS) bootstrap-clean 108 $(MAKE) $(MFLAGS) bootstrap-clean
109 cd ..\lisp 109 cd ..\lisp
110 $(MAKE) $(MFLAGS) bootstrap-clean 110 $(MAKE) $(MFLAGS) bootstrap-clean
111 111
112bootstrap-clean-SH: 112bootstrap-clean-SH:
113 $(MAKE) $(MFLAGS) -C ../src bootstrap-clean 113 $(MAKE) $(MFLAGS) -C ../src bootstrap-clean
114 $(MAKE) $(MFLAGS) -C ../lisp bootstrap-clean 114 $(MAKE) $(MFLAGS) -C ../lisp bootstrap-clean
115 115
116$(INSTALL_DIR): 116$(INSTALL_DIR):
117 - mkdir "$(INSTALL_DIR)" 117 - mkdir "$(INSTALL_DIR)"
118 118
119$(INSTALL_DIR)/bin: 119$(INSTALL_DIR)/bin:
120 - mkdir "$(INSTALL_DIR)/bin" 120 - mkdir "$(INSTALL_DIR)/bin"
121 121
122# 122#
123# Build and install emacs in INSTALL_DIR 123# Build and install emacs in INSTALL_DIR
124# 124#
125install: all $(INSTALL_DIR)/bin install-other-dirs-$(SHELLTYPE) 125install: all $(INSTALL_DIR)/bin install-other-dirs-$(SHELLTYPE)
126 - $(CP) $(BLD)/addpm.exe $(INSTALL_DIR)/bin 126 - $(CP) $(BLD)/addpm.exe $(INSTALL_DIR)/bin
127 - $(CP) $(BLD)/ddeclient.exe $(INSTALL_DIR)/bin 127 - $(CP) $(BLD)/ddeclient.exe $(INSTALL_DIR)/bin
128 - $(CP) $(BLD)/cmdproxy.exe $(INSTALL_DIR)/bin 128 - $(CP) $(BLD)/cmdproxy.exe $(INSTALL_DIR)/bin
129 - $(CP) $(BLD)/runemacs.exe $(INSTALL_DIR)/bin 129 - $(CP) $(BLD)/runemacs.exe $(INSTALL_DIR)/bin
130 - $(CP) ../lib-src/fns-*.el $(INSTALL_DIR)/bin 130 - $(CP) ../lib-src/fns-*.el $(INSTALL_DIR)/bin
131 - "$(INSTALL_DIR)/bin/addpm" /q 131 - "$(INSTALL_DIR)/bin/addpm" /q
132 - $(DEL) ../same-dir.tst 132 - $(DEL) ../same-dir.tst
133 - $(DEL) $(INSTALL_DIR)/same-dir.tst 133 - $(DEL) $(INSTALL_DIR)/same-dir.tst
134 - mkdir "$(INSTALL_DIR)/etc/icons" 134 - mkdir "$(INSTALL_DIR)/etc/icons"
135 - $(CP_DIR) icons $(INSTALL_DIR)/etc/icons 135 - $(CP_DIR) icons $(INSTALL_DIR)/etc/icons
136 echo SameDirTest > "$(INSTALL_DIR)/same-dir.tst" 136 echo SameDirTest > "$(INSTALL_DIR)/same-dir.tst"
137 $(IFNOTSAMEDIR) $(MAKE) $(MFLAGS) real_install $(ENDIF) 137 $(IFNOTSAMEDIR) $(MAKE) $(MFLAGS) real_install $(ENDIF)
138 - $(DEL) ../same-dir.tst 138 - $(DEL) ../same-dir.tst
139 - $(DEL) $(INSTALL_DIR)/same-dir.tst 139 - $(DEL) $(INSTALL_DIR)/same-dir.tst
140 140
141install-other-dirs-CMD: 141install-other-dirs-CMD:
142 cd ..\lib-src 142 cd ..\lib-src
143 $(MAKE) $(MFLAGS) install 143 $(MAKE) $(MFLAGS) install
144 cd ..\src 144 cd ..\src
145 $(MAKE) $(MFLAGS) install 145 $(MAKE) $(MFLAGS) install
146 cd ..\lisp 146 cd ..\lisp
147 $(MAKE) $(MFLAGS) install 147 $(MAKE) $(MFLAGS) install
148 cd ..\leim 148 cd ..\leim
149 $(MAKE) $(MFLAGS) install 149 $(MAKE) $(MFLAGS) install
150 cd ..\nt 150 cd ..\nt
151 151
152install-other-dirs-SH: 152install-other-dirs-SH:
153 $(MAKE) $(MFLAGS) -C ../lib-src install 153 $(MAKE) $(MFLAGS) -C ../lib-src install
154 $(MAKE) $(MFLAGS) -C ../src install 154 $(MAKE) $(MFLAGS) -C ../src install
155 $(MAKE) $(MFLAGS) -C ../lisp install 155 $(MAKE) $(MFLAGS) -C ../lisp install
156 $(MAKE) $(MFLAGS) -C ../leim install 156 $(MAKE) $(MFLAGS) -C ../leim install
157 157
158real_install: 158real_install:
159 - $(DEL) ../same-dir.tst 159 - $(DEL) ../same-dir.tst
160 - $(DEL) $(INSTALL_DIR)/same-dir.tst 160 - $(DEL) $(INSTALL_DIR)/same-dir.tst
161 echo SameDirTest > $(INSTALL_DIR)/same-dir.tst 161 echo SameDirTest > $(INSTALL_DIR)/same-dir.tst
162 - mkdir "$(INSTALL_DIR)/etc" 162 - mkdir "$(INSTALL_DIR)/etc"
163 - mkdir "$(INSTALL_DIR)/info" 163 - mkdir "$(INSTALL_DIR)/info"
164 - mkdir "$(INSTALL_DIR)/lock" 164 - mkdir "$(INSTALL_DIR)/lock"
165 - mkdir "$(INSTALL_DIR)/data" 165 - mkdir "$(INSTALL_DIR)/data"
166 - mkdir "$(INSTALL_DIR)/site-lisp" 166 - mkdir "$(INSTALL_DIR)/site-lisp"
167 - mkdir "$(INSTALL_DIR)/etc/icons" 167 - mkdir "$(INSTALL_DIR)/etc/icons"
168 - $(CP_DIR) icons $(INSTALL_DIR)/etc/icons 168 - $(CP_DIR) icons $(INSTALL_DIR)/etc/icons
169 $(IFNOTSAMEDIR) $(CP_DIR) ../etc $(INSTALL_DIR)/etc $(ENDIF) 169 $(IFNOTSAMEDIR) $(CP_DIR) ../etc $(INSTALL_DIR)/etc $(ENDIF)
170 $(IFNOTSAMEDIR) $(CP_DIR) ../info $(INSTALL_DIR)/info $(ENDIF) 170 $(IFNOTSAMEDIR) $(CP_DIR) ../info $(INSTALL_DIR)/info $(ENDIF)
171 - $(DEL) ../same-dir.tst 171 - $(DEL) ../same-dir.tst
172 - $(DEL) $(INSTALL_DIR)/same-dir.tst 172 - $(DEL) $(INSTALL_DIR)/same-dir.tst
173 173
174# 174#
175# Maintenance 175# Maintenance
176# 176#
177clean: clean-other-dirs-$(SHELLTYPE) 177clean: clean-other-dirs-$(SHELLTYPE)
178 - $(DEL) *~ *.pdb 178 - $(DEL) *~ *.pdb
179 - $(DEL_TREE) $(OBJDIR) 179 - $(DEL_TREE) $(OBJDIR)
180 - $(DEL) ../etc/DOC ../etc/DOC-X 180 - $(DEL) ../etc/DOC ../etc/DOC-X
181 181
182clean-other-dirs-CMD: 182clean-other-dirs-CMD:
183 cd ..\lib-src 183 cd ..\lib-src
184 $(MAKE) $(MFLAGS) clean 184 $(MAKE) $(MFLAGS) clean
185 cd ..\src 185 cd ..\src
186 $(MAKE) $(MFLAGS) clean 186 $(MAKE) $(MFLAGS) clean
187 cd ..\lisp 187 cd ..\lisp
188 $(MAKE) $(MFLAGS) clean 188 $(MAKE) $(MFLAGS) clean
189 cd ..\leim 189 cd ..\leim
190 $(MAKE) $(MFLAGS) clean 190 $(MAKE) $(MFLAGS) clean
191 cd ..\nt 191 cd ..\nt
192 192
193clean-other-dirs-SH: 193clean-other-dirs-SH:
194 $(MAKE) $(MFLAGS) -C ../lib-src clean 194 $(MAKE) $(MFLAGS) -C ../lib-src clean
195 $(MAKE) $(MFLAGS) -C ../src clean 195 $(MAKE) $(MFLAGS) -C ../src clean
196 $(MAKE) $(MFLAGS) -C ../lisp clean 196 $(MAKE) $(MFLAGS) -C ../lisp clean
197 $(MAKE) $(MFLAGS) -C ../leim clean 197 $(MAKE) $(MFLAGS) -C ../leim clean
198 198
199cleanall: clean 199cleanall: clean
200 - $(DEL_TREE) obj 200 - $(DEL_TREE) obj
201 - $(DEL_TREE) obj-spd 201 - $(DEL_TREE) obj-spd
202 - $(DEL_TREE) oo 202 - $(DEL_TREE) oo
203 - $(DEL_TREE) oo-spd 203 - $(DEL_TREE) oo-spd
204 204
205realclean: cleanall 205realclean: cleanall
206 - $(DEL_TREE) ../bin 206 - $(DEL_TREE) ../bin
diff --git a/src/makefile.w32-in b/src/makefile.w32-in
index e6b9eed4144..14391861a54 100644
--- a/src/makefile.w32-in
+++ b/src/makefile.w32-in
@@ -1,1170 +1,1170 @@
1# Makefile for GNU Emacs on the Microsoft W32 API. 1# Makefile for GNU Emacs on the Microsoft W32 API.
2# Copyright (c) 1992-2000 Free Software Foundation, Inc. 2# Copyright (c) 1992-2000 Free Software Foundation, Inc.
3# 3#
4# This file is part of GNU Emacs. 4# This file is part of GNU Emacs.
5# 5#
6# GNU Emacs is free software; you can redistribute it and/or modify 6# GNU Emacs is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by 7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2, or (at your option) 8# the Free Software Foundation; either version 2, or (at your option)
9# any later version. 9# any later version.
10# 10#
11# GNU Emacs is distributed in the hope that it will be useful, 11# GNU Emacs is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of 12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details. 14# GNU General Public License for more details.
15# 15#
16# You should have received a copy of the GNU General Public License 16# You should have received a copy of the GNU General Public License
17# along with GNU Emacs; see the file COPYING. If not, write to the 17# along with GNU Emacs; see the file COPYING. If not, write to the
18# Free Software Foundation, Inc., 59 Temple Place - Suite 330, 18# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19# Boston, MA 02111-1307, USA. 19# Boston, MA 02111-1307, USA.
20# 20#
21 21
22ALL = emacs 22ALL = emacs
23 23
24.PHONY: $(ALL) 24.PHONY: $(ALL)
25 25
26# 26#
27# HAVE_CONFIG_H is required by some generic gnu sources stuck into 27# HAVE_CONFIG_H is required by some generic gnu sources stuck into
28# the emacs source tree. 28# the emacs source tree.
29# 29#
30LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS) 30LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS)
31 31
32EMACS = $(BLD)/emacs.exe 32EMACS = $(BLD)/emacs.exe
33TEMACS = $(BLD)/temacs.exe 33TEMACS = $(BLD)/temacs.exe
34TEMACS_TMP = $(BLD)/temacs.bin 34TEMACS_TMP = $(BLD)/temacs.bin
35TLIB0 = $(BLD)/temacs0.$(A) 35TLIB0 = $(BLD)/temacs0.$(A)
36TLIB1 = $(BLD)/temacs1.$(A) 36TLIB1 = $(BLD)/temacs1.$(A)
37TLIBW32 = $(BLD)/temacw32.$(A) 37TLIBW32 = $(BLD)/temacw32.$(A)
38TOBJ = $(BLD)/firstfile.$(O) 38TOBJ = $(BLD)/firstfile.$(O)
39TRES = $(BLD)/emacs.res 39TRES = $(BLD)/emacs.res
40TLASTLIB = $(BLD)/lastfile.$(A) 40TLASTLIB = $(BLD)/lastfile.$(A)
41 41
42FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK) 42FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
43 43
44# 44#
45# Split up the objects into two sets so that we don't run out of 45# Split up the objects into two sets so that we don't run out of
46# command line space when we link them into a library. 46# command line space when we link them into a library.
47# 47#
48# Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O) 48# Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
49# as the "main" object file when linking. 49# as the "main" object file when linking.
50# 50#
51OBJ0 = $(BLD)/emacs.$(O) 51OBJ0 = $(BLD)/emacs.$(O)
52 52
53OBJ1 = $(BLD)/abbrev.$(O) \ 53OBJ1 = $(BLD)/abbrev.$(O) \
54 $(BLD)/alloc.$(O) \ 54 $(BLD)/alloc.$(O) \
55 $(BLD)/alloca.$(O) \ 55 $(BLD)/alloca.$(O) \
56 $(BLD)/atimer.$(O) \ 56 $(BLD)/atimer.$(O) \
57 $(BLD)/buffer.$(O) \ 57 $(BLD)/buffer.$(O) \
58 $(BLD)/bytecode.$(O) \ 58 $(BLD)/bytecode.$(O) \
59 $(BLD)/callint.$(O) \ 59 $(BLD)/callint.$(O) \
60 $(BLD)/callproc.$(O) \ 60 $(BLD)/callproc.$(O) \
61 $(BLD)/casefiddle.$(O) \ 61 $(BLD)/casefiddle.$(O) \
62 $(BLD)/cm.$(O) \ 62 $(BLD)/cm.$(O) \
63 $(BLD)/cmds.$(O) \ 63 $(BLD)/cmds.$(O) \
64 $(BLD)/data.$(O) \ 64 $(BLD)/data.$(O) \
65 $(BLD)/dired.$(O) \ 65 $(BLD)/dired.$(O) \
66 $(BLD)/dispnew.$(O) \ 66 $(BLD)/dispnew.$(O) \
67 $(BLD)/doc.$(O) \ 67 $(BLD)/doc.$(O) \
68 $(BLD)/doprnt.$(O) \ 68 $(BLD)/doprnt.$(O) \
69 $(BLD)/editfns.$(O) \ 69 $(BLD)/editfns.$(O) \
70 $(BLD)/eval.$(O) \ 70 $(BLD)/eval.$(O) \
71 $(BLD)/fileio.$(O) \ 71 $(BLD)/fileio.$(O) \
72 $(BLD)/filelock.$(O) \ 72 $(BLD)/filelock.$(O) \
73 $(BLD)/filemode.$(O) \ 73 $(BLD)/filemode.$(O) \
74 $(BLD)/fns.$(O) \ 74 $(BLD)/fns.$(O) \
75 $(BLD)/indent.$(O) \ 75 $(BLD)/indent.$(O) \
76 $(BLD)/insdel.$(O) \ 76 $(BLD)/insdel.$(O) \
77 $(BLD)/keyboard.$(O) \ 77 $(BLD)/keyboard.$(O) \
78 $(BLD)/keymap.$(O) \ 78 $(BLD)/keymap.$(O) \
79 $(BLD)/lread.$(O) \ 79 $(BLD)/lread.$(O) \
80 $(BLD)/macros.$(O) \ 80 $(BLD)/macros.$(O) \
81 $(BLD)/marker.$(O) \ 81 $(BLD)/marker.$(O) \
82 $(BLD)/minibuf.$(O) \ 82 $(BLD)/minibuf.$(O) \
83 $(BLD)/mocklisp.$(O) \ 83 $(BLD)/mocklisp.$(O) \
84 $(BLD)/w32.$(O) \ 84 $(BLD)/w32.$(O) \
85 $(BLD)/w32heap.$(O) \ 85 $(BLD)/w32heap.$(O) \
86 $(BLD)/w32inevt.$(O) \ 86 $(BLD)/w32inevt.$(O) \
87 $(BLD)/w32proc.$(O) \ 87 $(BLD)/w32proc.$(O) \
88 $(BLD)/w32console.$(O) \ 88 $(BLD)/w32console.$(O) \
89 $(BLD)/print.$(O) \ 89 $(BLD)/print.$(O) \
90 $(BLD)/process.$(O) \ 90 $(BLD)/process.$(O) \
91 $(BLD)/regex.$(O) \ 91 $(BLD)/regex.$(O) \
92 $(BLD)/scroll.$(O) \ 92 $(BLD)/scroll.$(O) \
93 $(BLD)/search.$(O) \ 93 $(BLD)/search.$(O) \
94 $(BLD)/syntax.$(O) \ 94 $(BLD)/syntax.$(O) \
95 $(BLD)/sysdep.$(O) \ 95 $(BLD)/sysdep.$(O) \
96 $(BLD)/term.$(O) \ 96 $(BLD)/term.$(O) \
97 $(BLD)/termcap.$(O) \ 97 $(BLD)/termcap.$(O) \
98 $(BLD)/tparam.$(O) \ 98 $(BLD)/tparam.$(O) \
99 $(BLD)/undo.$(O) \ 99 $(BLD)/undo.$(O) \
100 $(BLD)/unexw32.$(O) \ 100 $(BLD)/unexw32.$(O) \
101 $(BLD)/window.$(O) \ 101 $(BLD)/window.$(O) \
102 $(BLD)/xdisp.$(O) \ 102 $(BLD)/xdisp.$(O) \
103 $(BLD)/casetab.$(O) \ 103 $(BLD)/casetab.$(O) \
104 $(BLD)/floatfns.$(O) \ 104 $(BLD)/floatfns.$(O) \
105 $(BLD)/frame.$(O) \ 105 $(BLD)/frame.$(O) \
106 $(BLD)/gmalloc.$(O) \ 106 $(BLD)/gmalloc.$(O) \
107 $(BLD)/intervals.$(O) \ 107 $(BLD)/intervals.$(O) \
108 $(BLD)/composite.$(O) \ 108 $(BLD)/composite.$(O) \
109 $(BLD)/ralloc.$(O) \ 109 $(BLD)/ralloc.$(O) \
110 $(BLD)/textprop.$(O) \ 110 $(BLD)/textprop.$(O) \
111 $(BLD)/vm-limit.$(O) \ 111 $(BLD)/vm-limit.$(O) \
112 $(BLD)/region-cache.$(O) \ 112 $(BLD)/region-cache.$(O) \
113 $(BLD)/strftime.$(O) \ 113 $(BLD)/strftime.$(O) \
114 $(BLD)/charset.$(O) \ 114 $(BLD)/charset.$(O) \
115 $(BLD)/coding.$(O) \ 115 $(BLD)/coding.$(O) \
116 $(BLD)/category.$(O) \ 116 $(BLD)/category.$(O) \
117 $(BLD)/ccl.$(O) \ 117 $(BLD)/ccl.$(O) \
118 $(BLD)/fontset.$(O) 118 $(BLD)/fontset.$(O)
119 119
120WIN32OBJ = $(BLD)/w32term.$(O) \ 120WIN32OBJ = $(BLD)/w32term.$(O) \
121 $(BLD)/w32xfns.$(O) \ 121 $(BLD)/w32xfns.$(O) \
122 $(BLD)/w32fns.$(O) \ 122 $(BLD)/w32fns.$(O) \
123 $(BLD)/xfaces.$(O) \ 123 $(BLD)/xfaces.$(O) \
124 $(BLD)/w32select.$(O) \ 124 $(BLD)/w32select.$(O) \
125 $(BLD)/w32menu.$(O) \ 125 $(BLD)/w32menu.$(O) \
126 $(BLD)/w32reg.$(O) \ 126 $(BLD)/w32reg.$(O) \
127 $(BLD)/w32bdf.$(O) 127 $(BLD)/w32bdf.$(O)
128 128
129LIBS = $(TLIB0) \ 129LIBS = $(TLIB0) \
130 $(TLIB1) \ 130 $(TLIB1) \
131 $(TLIBW32) \ 131 $(TLIBW32) \
132 $(TLASTLIB) \ 132 $(TLASTLIB) \
133 $(ADVAPI32) \ 133 $(ADVAPI32) \
134 $(GDI32) \ 134 $(GDI32) \
135 $(COMDLG32) \ 135 $(COMDLG32) \
136 $(USER32) \ 136 $(USER32) \
137 $(MPR) \ 137 $(MPR) \
138 $(SHELL32) \ 138 $(SHELL32) \
139 $(libc) 139 $(libc)
140 140
141# 141#
142# Build the executable and dump it. 142# Build the executable and dump it.
143# 143#
144all: $(ALL) 144all: $(ALL)
145 145
146# 146#
147# The dumped executable 147# The dumped executable
148# 148#
149emacs: $(BLD) $(EMACS) 149emacs: $(BLD) $(EMACS)
150$(EMACS): $(DOC) $(TEMACS) 150$(EMACS): $(DOC) $(TEMACS)
151 "./$(BLD)/temacs.exe" -batch -l loadup dump 151 "./$(BLD)/temacs.exe" -batch -l loadup dump
152 152
153# 153#
154# The undumped executable 154# The undumped executable
155# Note the extra post-link step to insert a static preload heap section. 155# Note the extra post-link step to insert a static preload heap section.
156# If preload runs out of memory, increase the last argument to addsection 156# If preload runs out of memory, increase the last argument to addsection
157# (it is the preload heap size in MB). 157# (it is the preload heap size in MB).
158# 158#
159temacs: $(BLD) $(TEMACS) 159temacs: $(BLD) $(TEMACS)
160$(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) 160$(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
161 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS) 161 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
162 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16 162 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16
163 163
164bootstrap: bootstrap-emacs 164bootstrap: bootstrap-emacs
165 165
166# 166#
167# Build a temacs with a sufficiently large PURESIZE to load the 167# Build a temacs with a sufficiently large PURESIZE to load the
168# Lisp files from loadup.el in source form. 168# Lisp files from loadup.el in source form.
169# 169#
170bootstrap-temacs: bootstrap-clean 170bootstrap-temacs: bootstrap-clean
171 $(MAKE) $(MFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE) 171 $(MAKE) $(MFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
172 172
173# 173#
174# Dump an Emacs executable named bootstrap-emacs containing the 174# Dump an Emacs executable named bootstrap-emacs containing the
175# files from loadup.el in source form. 175# files from loadup.el in source form.
176# 176#
177bootstrap-emacs: bootstrap-temacs 177bootstrap-emacs: bootstrap-temacs
178 "./$(BLD)/temacs.exe" -batch -l loadup bootstrap 178 "./$(BLD)/temacs.exe" -batch -l loadup bootstrap
179 - mkdir "../bin" 179 - mkdir "../bin"
180 $(CP) $(EMACS) ../bin 180 $(CP) $(EMACS) ../bin
181 181
182# 182#
183# Force recompile of files that depend on PURESIZE 183# Force recompile of files that depend on PURESIZE
184# 184#
185bootstrap-clean: 185bootstrap-clean:
186 - $(DEL) $(BLD)/alloc.$(O) 186 - $(DEL) $(BLD)/alloc.$(O)
187 - $(DEL) $(BLD)/data.$(O) 187 - $(DEL) $(BLD)/data.$(O)
188 - $(DEL) $(BLD)/intervals.$(O) 188 - $(DEL) $(BLD)/intervals.$(O)
189 - $(DEL) $(BLD)/keyboard.$(O) 189 - $(DEL) $(BLD)/keyboard.$(O)
190 - $(DEL) $(BLD)/keymap.$(O) 190 - $(DEL) $(BLD)/keymap.$(O)
191 191
192# 192#
193# The resource file. NT 3.10 requires the use of cvtres; even though 193# The resource file. NT 3.10 requires the use of cvtres; even though
194# it is not necessary on later versions, it is still ok to use it. 194# it is not necessary on later versions, it is still ok to use it.
195# 195#
196$(TRES): ../nt/emacs.rc 196$(TRES): ../nt/emacs.rc
197 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ $(ALL_DEPS) 197 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ $(ALL_DEPS)
198 198
199# 199#
200# Build the library. Split up the build into two phases...otherwise we 200# Build the library. Split up the build into two phases...otherwise we
201# run out of command line space. 201# run out of command line space.
202# 202#
203$(TLIB0): $(OBJ0) 203$(TLIB0): $(OBJ0)
204 - $(DEL) $@ 204 - $(DEL) $@
205 $(AR) $(AR_OUT)$@ $(ALL_DEPS) 205 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
206$(TLIB1): $(OBJ1) 206$(TLIB1): $(OBJ1)
207 - $(DEL) $@ 207 - $(DEL) $@
208 $(AR) $(AR_OUT)$@ $(ALL_DEPS) 208 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
209$(TLIBW32): $(WIN32OBJ) 209$(TLIBW32): $(WIN32OBJ)
210 - $(DEL) $@ 210 - $(DEL) $@
211 $(AR) $(AR_OUT)$@ $(ALL_DEPS) 211 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
212 212
213# 213#
214# Place lastfile.$(O) in its own library so that it can be loaded after 214# Place lastfile.$(O) in its own library so that it can be loaded after
215# the source libraries but before any system libraries. Doing so defines 215# the source libraries but before any system libraries. Doing so defines
216# the end of Emacs' data section portably across compilers and systems. 216# the end of Emacs' data section portably across compilers and systems.
217# 217#
218$(TLASTLIB): $(BLD)/lastfile.$(O) 218$(TLASTLIB): $(BLD)/lastfile.$(O)
219 - $(DEL) $@ 219 - $(DEL) $@
220 $(AR) $(AR_OUT)$@ $(ALL_DEPS) 220 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
221 221
222# 222#
223# Assuming INSTALL_DIR is defined, build and install emacs in it. 223# Assuming INSTALL_DIR is defined, build and install emacs in it.
224# 224#
225install: $(ALL) 225install: $(ALL)
226 - mkdir "$(INSTALL_DIR)/bin" 226 - mkdir "$(INSTALL_DIR)/bin"
227 $(CP) $(EMACS) $(INSTALL_DIR)/bin 227 $(CP) $(EMACS) $(INSTALL_DIR)/bin
228 228
229# 229#
230# Maintenance 230# Maintenance
231# 231#
232clean: 232clean:
233 - $(DEL) *~ "s/*~" "m/*~" 233 - $(DEL) *~ "s/*~" "m/*~"
234 - $(DEL) *.pdb 234 - $(DEL) *.pdb
235 - $(DEL_TREE) $(OBJDIR) 235 - $(DEL_TREE) $(OBJDIR)
236 236
237distclean: clean 237distclean: clean
238 - $(DEL) config.h epaths.h 238 - $(DEL) config.h epaths.h
239 239
240cleanall: clean 240cleanall: clean
241 - $(DEL_TREE) obj 241 - $(DEL_TREE) obj
242 - $(DEL_TREE) obj-spd 242 - $(DEL_TREE) obj-spd
243 - $(DEL_TREE) oo 243 - $(DEL_TREE) oo
244 - $(DEL_TREE) oo-spd 244 - $(DEL_TREE) oo-spd
245 245
246### DEPENDENCIES ### 246### DEPENDENCIES ###
247 247
248EMACS_ROOT = .. 248EMACS_ROOT = ..
249SRC = . 249SRC = .
250 250
251$(BLD)/abbrev.obj : \ 251$(BLD)/abbrev.obj : \
252 $(SRC)/abbrev.c \ 252 $(SRC)/abbrev.c \
253 $(EMACS_ROOT)/src/s/ms-w32.h \ 253 $(EMACS_ROOT)/src/s/ms-w32.h \
254 $(EMACS_ROOT)/src/m/intel386.h \ 254 $(EMACS_ROOT)/src/m/intel386.h \
255 $(EMACS_ROOT)/src/config.h \ 255 $(EMACS_ROOT)/src/config.h \
256 $(SRC)/commands.h \ 256 $(SRC)/commands.h \
257 $(SRC)/buffer.h \ 257 $(SRC)/buffer.h \
258 $(SRC)/window.h 258 $(SRC)/window.h
259 259
260$(BLD)/alloc.obj : \ 260$(BLD)/alloc.obj : \
261 $(SRC)/alloc.c \ 261 $(SRC)/alloc.c \
262 $(EMACS_ROOT)/src/s/ms-w32.h \ 262 $(EMACS_ROOT)/src/s/ms-w32.h \
263 $(EMACS_ROOT)/src/m/intel386.h \ 263 $(EMACS_ROOT)/src/m/intel386.h \
264 $(EMACS_ROOT)/src/config.h \ 264 $(EMACS_ROOT)/src/config.h \
265 $(SRC)/dispextern.h \ 265 $(SRC)/dispextern.h \
266 $(SRC)/intervals.h \ 266 $(SRC)/intervals.h \
267 $(SRC)/composite.h \ 267 $(SRC)/composite.h \
268 $(SRC)/puresize.h \ 268 $(SRC)/puresize.h \
269 $(SRC)/buffer.h \ 269 $(SRC)/buffer.h \
270 $(SRC)/window.h \ 270 $(SRC)/window.h \
271 $(SRC)/frame.h \ 271 $(SRC)/frame.h \
272 $(SRC)/blockinput.h \ 272 $(SRC)/blockinput.h \
273 $(SRC)/syssignal.h 273 $(SRC)/syssignal.h
274 274
275$(BLD)/alloca.obj : \ 275$(BLD)/alloca.obj : \
276 $(SRC)/alloca.c \ 276 $(SRC)/alloca.c \
277 $(EMACS_ROOT)/src/s/ms-w32.h \ 277 $(EMACS_ROOT)/src/s/ms-w32.h \
278 $(EMACS_ROOT)/src/m/intel386.h \ 278 $(EMACS_ROOT)/src/m/intel386.h \
279 $(EMACS_ROOT)/src/config.h \ 279 $(EMACS_ROOT)/src/config.h \
280 $(SRC)/s/ms-w32.h \ 280 $(SRC)/s/ms-w32.h \
281 $(SRC)/m/intel386.h \ 281 $(SRC)/m/intel386.h \
282 $(SRC)/config.h \ 282 $(SRC)/config.h \
283 $(SRC)/blockinput.h 283 $(SRC)/blockinput.h
284 284
285$(BLD)/atimer.obj : \ 285$(BLD)/atimer.obj : \
286 $(SRC)/atimer.c \ 286 $(SRC)/atimer.c \
287 $(EMACS_ROOT)/src/s/ms-w32.h \ 287 $(EMACS_ROOT)/src/s/ms-w32.h \
288 $(EMACS_ROOT)/src/m/intel386.h \ 288 $(EMACS_ROOT)/src/m/intel386.h \
289 $(EMACS_ROOT)/src/config.h \ 289 $(EMACS_ROOT)/src/config.h \
290 $(SRC)/s/ms-w32.h \ 290 $(SRC)/s/ms-w32.h \
291 $(SRC)/m/intel386.h \ 291 $(SRC)/m/intel386.h \
292 $(SRC)/config.h \ 292 $(SRC)/config.h \
293 $(SRC)/atimer.h \ 293 $(SRC)/atimer.h \
294 $(SRC)/syssignal.h \ 294 $(SRC)/syssignal.h \
295 $(SRC)/systime.h \ 295 $(SRC)/systime.h \
296 $(SRC)/blockinput.h 296 $(SRC)/blockinput.h
297 297
298$(BLD)/buffer.obj : \ 298$(BLD)/buffer.obj : \
299 $(SRC)/buffer.c \ 299 $(SRC)/buffer.c \
300 $(EMACS_ROOT)/nt/inc/sys/param.h \ 300 $(EMACS_ROOT)/nt/inc/sys/param.h \
301 $(EMACS_ROOT)/src/s/ms-w32.h \ 301 $(EMACS_ROOT)/src/s/ms-w32.h \
302 $(EMACS_ROOT)/src/m/intel386.h \ 302 $(EMACS_ROOT)/src/m/intel386.h \
303 $(EMACS_ROOT)/src/config.h \ 303 $(EMACS_ROOT)/src/config.h \
304 $(SRC)/dispextern.h \ 304 $(SRC)/dispextern.h \
305 $(SRC)/intervals.h \ 305 $(SRC)/intervals.h \
306 $(SRC)/composite.h \ 306 $(SRC)/composite.h \
307 $(SRC)/frame.h \ 307 $(SRC)/frame.h \
308 $(SRC)/window.h \ 308 $(SRC)/window.h \
309 $(SRC)/commands.h \ 309 $(SRC)/commands.h \
310 $(SRC)/buffer.h \ 310 $(SRC)/buffer.h \
311 $(SRC)/indent.h \ 311 $(SRC)/indent.h \
312 $(SRC)/blockinput.h \ 312 $(SRC)/blockinput.h \
313 $(SRC)/region-cache.h 313 $(SRC)/region-cache.h
314 314
315$(BLD)/bytecode.obj : \ 315$(BLD)/bytecode.obj : \
316 $(SRC)/bytecode.c \ 316 $(SRC)/bytecode.c \
317 $(EMACS_ROOT)/src/s/ms-w32.h \ 317 $(EMACS_ROOT)/src/s/ms-w32.h \
318 $(EMACS_ROOT)/src/m/intel386.h \ 318 $(EMACS_ROOT)/src/m/intel386.h \
319 $(EMACS_ROOT)/src/config.h \ 319 $(EMACS_ROOT)/src/config.h \
320 $(SRC)/buffer.h \ 320 $(SRC)/buffer.h \
321 $(SRC)/syntax.h 321 $(SRC)/syntax.h
322 322
323$(BLD)/callint.obj : \ 323$(BLD)/callint.obj : \
324 $(SRC)/callint.c \ 324 $(SRC)/callint.c \
325 $(EMACS_ROOT)/src/s/ms-w32.h \ 325 $(EMACS_ROOT)/src/s/ms-w32.h \
326 $(EMACS_ROOT)/src/m/intel386.h \ 326 $(EMACS_ROOT)/src/m/intel386.h \
327 $(EMACS_ROOT)/src/config.h \ 327 $(EMACS_ROOT)/src/config.h \
328 $(SRC)/buffer.h \ 328 $(SRC)/buffer.h \
329 $(SRC)/commands.h \ 329 $(SRC)/commands.h \
330 $(SRC)/keyboard.h \ 330 $(SRC)/keyboard.h \
331 $(SRC)/window.h \ 331 $(SRC)/window.h \
332 $(SRC)/mocklisp.h 332 $(SRC)/mocklisp.h
333 333
334$(BLD)/callproc.obj : \ 334$(BLD)/callproc.obj : \
335 $(SRC)/callproc.c \ 335 $(SRC)/callproc.c \
336 $(EMACS_ROOT)/src/s/ms-w32.h \ 336 $(EMACS_ROOT)/src/s/ms-w32.h \
337 $(EMACS_ROOT)/src/m/intel386.h \ 337 $(EMACS_ROOT)/src/m/intel386.h \
338 $(EMACS_ROOT)/src/config.h \ 338 $(EMACS_ROOT)/src/config.h \
339 $(SRC)/msdos.h \ 339 $(SRC)/msdos.h \
340 $(EMACS_ROOT)/nt/inc/sys/param.h \ 340 $(EMACS_ROOT)/nt/inc/sys/param.h \
341 $(SRC)/commands.h \ 341 $(SRC)/commands.h \
342 $(SRC)/buffer.h \ 342 $(SRC)/buffer.h \
343 $(SRC)/process.h \ 343 $(SRC)/process.h \
344 $(SRC)/syssignal.h \ 344 $(SRC)/syssignal.h \
345 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 345 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
346 $(EMACS_ROOT)/nt/inc/sys/file.h \ 346 $(EMACS_ROOT)/nt/inc/sys/file.h \
347 $(SRC)/systty.h 347 $(SRC)/systty.h
348 348
349$(BLD)/casefiddle.obj : \ 349$(BLD)/casefiddle.obj : \
350 $(SRC)/casefiddle.c \ 350 $(SRC)/casefiddle.c \
351 $(EMACS_ROOT)/src/s/ms-w32.h \ 351 $(EMACS_ROOT)/src/s/ms-w32.h \
352 $(EMACS_ROOT)/src/m/intel386.h \ 352 $(EMACS_ROOT)/src/m/intel386.h \
353 $(EMACS_ROOT)/src/config.h \ 353 $(EMACS_ROOT)/src/config.h \
354 $(SRC)/buffer.h \ 354 $(SRC)/buffer.h \
355 $(SRC)/commands.h \ 355 $(SRC)/commands.h \
356 $(SRC)/syntax.h 356 $(SRC)/syntax.h
357 $(CC) $(CFLAGS) -Fo$@ casefiddle.c 357 $(CC) $(CFLAGS) -Fo$@ casefiddle.c
358 358
359$(BLD)/casetab.obj : \ 359$(BLD)/casetab.obj : \
360 $(SRC)/casetab.c \ 360 $(SRC)/casetab.c \
361 $(EMACS_ROOT)/src/s/ms-w32.h \ 361 $(EMACS_ROOT)/src/s/ms-w32.h \
362 $(EMACS_ROOT)/src/m/intel386.h \ 362 $(EMACS_ROOT)/src/m/intel386.h \
363 $(EMACS_ROOT)/src/config.h \ 363 $(EMACS_ROOT)/src/config.h \
364 $(SRC)/buffer.h 364 $(SRC)/buffer.h
365 365
366$(BLD)/cm.obj : \ 366$(BLD)/cm.obj : \
367 $(SRC)/cm.c \ 367 $(SRC)/cm.c \
368 $(EMACS_ROOT)/src/s/ms-w32.h \ 368 $(EMACS_ROOT)/src/s/ms-w32.h \
369 $(EMACS_ROOT)/src/m/intel386.h \ 369 $(EMACS_ROOT)/src/m/intel386.h \
370 $(EMACS_ROOT)/src/config.h \ 370 $(EMACS_ROOT)/src/config.h \
371 $(SRC)/cm.h \ 371 $(SRC)/cm.h \
372 $(SRC)/termhooks.h 372 $(SRC)/termhooks.h
373 373
374$(BLD)/cmds.obj : \ 374$(BLD)/cmds.obj : \
375 $(SRC)/cmds.c \ 375 $(SRC)/cmds.c \
376 $(EMACS_ROOT)/src/s/ms-w32.h \ 376 $(EMACS_ROOT)/src/s/ms-w32.h \
377 $(EMACS_ROOT)/src/m/intel386.h \ 377 $(EMACS_ROOT)/src/m/intel386.h \
378 $(EMACS_ROOT)/src/config.h \ 378 $(EMACS_ROOT)/src/config.h \
379 $(SRC)/commands.h \ 379 $(SRC)/commands.h \
380 $(SRC)/buffer.h \ 380 $(SRC)/buffer.h \
381 $(SRC)/syntax.h 381 $(SRC)/syntax.h
382 382
383$(BLD)/composite.obj : \ 383$(BLD)/composite.obj : \
384 $(SRC)/composite.c \ 384 $(SRC)/composite.c \
385 $(SRC)/buffer.h \ 385 $(SRC)/buffer.h \
386 $(SRC)/charset.h \ 386 $(SRC)/charset.h \
387 $(SRC)/intervals.h \ 387 $(SRC)/intervals.h \
388 $(SRC)/composite.h \ 388 $(SRC)/composite.h \
389 $(EMACS_ROOT)/src/s/ms-w32.h \ 389 $(EMACS_ROOT)/src/s/ms-w32.h \
390 $(EMACS_ROOT)/src/m/intel386.h \ 390 $(EMACS_ROOT)/src/m/intel386.h \
391 $(EMACS_ROOT)/src/config.h 391 $(EMACS_ROOT)/src/config.h
392 392
393$(BLD)/data.obj : \ 393$(BLD)/data.obj : \
394 $(SRC)/data.c \ 394 $(SRC)/data.c \
395 $(EMACS_ROOT)/src/s/ms-w32.h \ 395 $(EMACS_ROOT)/src/s/ms-w32.h \
396 $(EMACS_ROOT)/src/m/intel386.h \ 396 $(EMACS_ROOT)/src/m/intel386.h \
397 $(EMACS_ROOT)/src/config.h \ 397 $(EMACS_ROOT)/src/config.h \
398 $(SRC)/puresize.h \ 398 $(SRC)/puresize.h \
399 $(SRC)/buffer.h \ 399 $(SRC)/buffer.h \
400 $(SRC)/syssignal.h 400 $(SRC)/syssignal.h
401 401
402$(BLD)/dired.obj : \ 402$(BLD)/dired.obj : \
403 $(SRC)/dired.c \ 403 $(SRC)/dired.c \
404 $(EMACS_ROOT)/src/s/ms-w32.h \ 404 $(EMACS_ROOT)/src/s/ms-w32.h \
405 $(EMACS_ROOT)/src/m/intel386.h \ 405 $(EMACS_ROOT)/src/m/intel386.h \
406 $(EMACS_ROOT)/src/config.h \ 406 $(EMACS_ROOT)/src/config.h \
407 $(SRC)/vmsdir.h \ 407 $(SRC)/vmsdir.h \
408 $(SRC)/ndir.h \ 408 $(SRC)/ndir.h \
409 $(SRC)/buffer.h \ 409 $(SRC)/buffer.h \
410 $(SRC)/commands.h \ 410 $(SRC)/commands.h \
411 $(SRC)/regex.h 411 $(SRC)/regex.h
412 412
413$(BLD)/dispnew.obj : \ 413$(BLD)/dispnew.obj : \
414 $(SRC)/dispnew.c \ 414 $(SRC)/dispnew.c \
415 $(EMACS_ROOT)/src/s/ms-w32.h \ 415 $(EMACS_ROOT)/src/s/ms-w32.h \
416 $(EMACS_ROOT)/src/m/intel386.h \ 416 $(EMACS_ROOT)/src/m/intel386.h \
417 $(EMACS_ROOT)/src/config.h \ 417 $(EMACS_ROOT)/src/config.h \
418 $(SRC)/termchar.h \ 418 $(SRC)/termchar.h \
419 $(SRC)/termopts.h \ 419 $(SRC)/termopts.h \
420 $(SRC)/termhooks.h \ 420 $(SRC)/termhooks.h \
421 $(SRC)/cm.h \ 421 $(SRC)/cm.h \
422 $(SRC)/buffer.h \ 422 $(SRC)/buffer.h \
423 $(SRC)/frame.h \ 423 $(SRC)/frame.h \
424 $(SRC)/window.h \ 424 $(SRC)/window.h \
425 $(SRC)/commands.h \ 425 $(SRC)/commands.h \
426 $(SRC)/disptab.h \ 426 $(SRC)/disptab.h \
427 $(SRC)/indent.h \ 427 $(SRC)/indent.h \
428 $(SRC)/dispextern.h \ 428 $(SRC)/dispextern.h \
429 $(SRC)/intervals.h \ 429 $(SRC)/intervals.h \
430 $(SRC)/composite.h \ 430 $(SRC)/composite.h \
431 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 431 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
432 $(EMACS_ROOT)/nt/inc/sys/file.h \ 432 $(EMACS_ROOT)/nt/inc/sys/file.h \
433 $(SRC)/systty.h \ 433 $(SRC)/systty.h \
434 $(SRC)/w32term.h \ 434 $(SRC)/w32term.h \
435 $(SRC)/xterm.h \ 435 $(SRC)/xterm.h \
436 $(SRC)/vmstime.h \ 436 $(SRC)/vmstime.h \
437 $(SRC)/systime.h 437 $(SRC)/systime.h
438 438
439$(BLD)/doc.obj : \ 439$(BLD)/doc.obj : \
440 $(SRC)/doc.c \ 440 $(SRC)/doc.c \
441 $(EMACS_ROOT)/src/s/ms-w32.h \ 441 $(EMACS_ROOT)/src/s/ms-w32.h \
442 $(EMACS_ROOT)/src/m/intel386.h \ 442 $(EMACS_ROOT)/src/m/intel386.h \
443 $(EMACS_ROOT)/src/config.h \ 443 $(EMACS_ROOT)/src/config.h \
444 $(EMACS_ROOT)/nt/inc/sys/file.h \ 444 $(EMACS_ROOT)/nt/inc/sys/file.h \
445 $(SRC)/buffer.h \ 445 $(SRC)/buffer.h \
446 $(SRC)/keyboard.h 446 $(SRC)/keyboard.h
447 447
448$(BLD)/doprnt.obj : \ 448$(BLD)/doprnt.obj : \
449 $(SRC)/doprnt.c \ 449 $(SRC)/doprnt.c \
450 $(EMACS_ROOT)/src/s/ms-w32.h \ 450 $(EMACS_ROOT)/src/s/ms-w32.h \
451 $(EMACS_ROOT)/src/m/intel386.h \ 451 $(EMACS_ROOT)/src/m/intel386.h \
452 $(EMACS_ROOT)/src/config.h 452 $(EMACS_ROOT)/src/config.h
453 453
454$(BLD)/dosfns.obj : \ 454$(BLD)/dosfns.obj : \
455 $(SRC)/dosfns.c \ 455 $(SRC)/dosfns.c \
456 $(EMACS_ROOT)/src/s/ms-w32.h \ 456 $(EMACS_ROOT)/src/s/ms-w32.h \
457 $(EMACS_ROOT)/src/m/intel386.h \ 457 $(EMACS_ROOT)/src/m/intel386.h \
458 $(EMACS_ROOT)/src/config.h \ 458 $(EMACS_ROOT)/src/config.h \
459 $(SRC)/buffer.h \ 459 $(SRC)/buffer.h \
460 $(SRC)/termchar.h \ 460 $(SRC)/termchar.h \
461 $(SRC)/termhooks.h \ 461 $(SRC)/termhooks.h \
462 $(SRC)/frame.h \ 462 $(SRC)/frame.h \
463 $(SRC)/dosfns.h \ 463 $(SRC)/dosfns.h \
464 $(SRC)/msdos.h 464 $(SRC)/msdos.h
465 465
466$(BLD)/editfns.obj : \ 466$(BLD)/editfns.obj : \
467 $(SRC)/editfns.c \ 467 $(SRC)/editfns.c \
468 $(EMACS_ROOT)/src/s/ms-w32.h \ 468 $(EMACS_ROOT)/src/s/ms-w32.h \
469 $(EMACS_ROOT)/src/m/intel386.h \ 469 $(EMACS_ROOT)/src/m/intel386.h \
470 $(EMACS_ROOT)/src/config.h \ 470 $(EMACS_ROOT)/src/config.h \
471 $(SRC)/uaf.h \ 471 $(SRC)/uaf.h \
472 $(SRC)/vms-pwd.h \ 472 $(SRC)/vms-pwd.h \
473 $(EMACS_ROOT)/nt/inc/pwd.h \ 473 $(EMACS_ROOT)/nt/inc/pwd.h \
474 $(SRC)/dispextern.h \ 474 $(SRC)/dispextern.h \
475 $(SRC)/intervals.h \ 475 $(SRC)/intervals.h \
476 $(SRC)/composite.h \ 476 $(SRC)/composite.h \
477 $(SRC)/buffer.h \ 477 $(SRC)/buffer.h \
478 $(SRC)/window.h \ 478 $(SRC)/window.h \
479 $(SRC)/vmstime.h \ 479 $(SRC)/vmstime.h \
480 $(SRC)/systime.h 480 $(SRC)/systime.h
481 481
482$(BLD)/emacs.obj : \ 482$(BLD)/emacs.obj : \
483 $(SRC)/emacs.c \ 483 $(SRC)/emacs.c \
484 $(EMACS_ROOT)/src/s/ms-w32.h \ 484 $(EMACS_ROOT)/src/s/ms-w32.h \
485 $(EMACS_ROOT)/src/m/intel386.h \ 485 $(EMACS_ROOT)/src/m/intel386.h \
486 $(EMACS_ROOT)/src/config.h \ 486 $(EMACS_ROOT)/src/config.h \
487 $(SRC)/commands.h \ 487 $(SRC)/commands.h \
488 $(SRC)/dispextern.h \ 488 $(SRC)/dispextern.h \
489 $(SRC)/intervals.h \ 489 $(SRC)/intervals.h \
490 $(SRC)/composite.h \ 490 $(SRC)/composite.h \
491 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 491 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
492 $(EMACS_ROOT)/nt/inc/sys/file.h \ 492 $(EMACS_ROOT)/nt/inc/sys/file.h \
493 $(SRC)/systty.h \ 493 $(SRC)/systty.h \
494 $(SRC)/syssignal.h \ 494 $(SRC)/syssignal.h \
495 $(SRC)/process.h 495 $(SRC)/process.h
496 496
497$(BLD)/eval.obj : \ 497$(BLD)/eval.obj : \
498 $(SRC)/eval.c \ 498 $(SRC)/eval.c \
499 $(EMACS_ROOT)/src/s/ms-w32.h \ 499 $(EMACS_ROOT)/src/s/ms-w32.h \
500 $(EMACS_ROOT)/src/m/intel386.h \ 500 $(EMACS_ROOT)/src/m/intel386.h \
501 $(EMACS_ROOT)/src/config.h \ 501 $(EMACS_ROOT)/src/config.h \
502 $(SRC)/blockinput.h \ 502 $(SRC)/blockinput.h \
503 $(SRC)/commands.h \ 503 $(SRC)/commands.h \
504 $(SRC)/keyboard.h 504 $(SRC)/keyboard.h
505 505
506$(BLD)/fileio.obj : \ 506$(BLD)/fileio.obj : \
507 $(SRC)/fileio.c \ 507 $(SRC)/fileio.c \
508 $(EMACS_ROOT)/src/s/ms-w32.h \ 508 $(EMACS_ROOT)/src/s/ms-w32.h \
509 $(EMACS_ROOT)/src/m/intel386.h \ 509 $(EMACS_ROOT)/src/m/intel386.h \
510 $(EMACS_ROOT)/src/config.h \ 510 $(EMACS_ROOT)/src/config.h \
511 $(SRC)/uaf.h \ 511 $(SRC)/uaf.h \
512 $(SRC)/vms-pwd.h \ 512 $(SRC)/vms-pwd.h \
513 $(EMACS_ROOT)/nt/inc/pwd.h \ 513 $(EMACS_ROOT)/nt/inc/pwd.h \
514 $(SRC)/msdos.h \ 514 $(SRC)/msdos.h \
515 $(EMACS_ROOT)/nt/inc/sys/param.h \ 515 $(EMACS_ROOT)/nt/inc/sys/param.h \
516 $(SRC)/vmsdir.h \ 516 $(SRC)/vmsdir.h \
517 $(SRC)/dispextern.h \ 517 $(SRC)/dispextern.h \
518 $(SRC)/intervals.h \ 518 $(SRC)/intervals.h \
519 $(SRC)/composite.h \ 519 $(SRC)/composite.h \
520 $(SRC)/buffer.h \ 520 $(SRC)/buffer.h \
521 $(SRC)/window.h \ 521 $(SRC)/window.h \
522 $(EMACS_ROOT)/nt/inc/sys/file.h \ 522 $(EMACS_ROOT)/nt/inc/sys/file.h \
523 $(SRC)/vmstime.h \ 523 $(SRC)/vmstime.h \
524 $(SRC)/systime.h 524 $(SRC)/systime.h
525 525
526$(BLD)/filelock.obj : \ 526$(BLD)/filelock.obj : \
527 $(SRC)/filelock.c \ 527 $(SRC)/filelock.c \
528 $(EMACS_ROOT)/src/s/ms-w32.h \ 528 $(EMACS_ROOT)/src/s/ms-w32.h \
529 $(EMACS_ROOT)/src/m/intel386.h \ 529 $(EMACS_ROOT)/src/m/intel386.h \
530 $(EMACS_ROOT)/src/config.h \ 530 $(EMACS_ROOT)/src/config.h \
531 $(SRC)/uaf.h \ 531 $(SRC)/uaf.h \
532 $(SRC)/vms-pwd.h \ 532 $(SRC)/vms-pwd.h \
533 $(EMACS_ROOT)/nt/inc/pwd.h \ 533 $(EMACS_ROOT)/nt/inc/pwd.h \
534 $(EMACS_ROOT)/nt/inc/sys/file.h \ 534 $(EMACS_ROOT)/nt/inc/sys/file.h \
535 $(EMACS_ROOT)/src/epaths.h \ 535 $(EMACS_ROOT)/src/epaths.h \
536 $(SRC)/buffer.h \ 536 $(SRC)/buffer.h \
537 $(SRC)/vmsdir.h \ 537 $(SRC)/vmsdir.h \
538 $(SRC)/ndir.h 538 $(SRC)/ndir.h
539 539
540$(BLD)/filemode.obj : \ 540$(BLD)/filemode.obj : \
541 $(SRC)/filemode.c \ 541 $(SRC)/filemode.c \
542 $(EMACS_ROOT)/src/s/ms-w32.h \ 542 $(EMACS_ROOT)/src/s/ms-w32.h \
543 $(EMACS_ROOT)/src/m/intel386.h \ 543 $(EMACS_ROOT)/src/m/intel386.h \
544 $(EMACS_ROOT)/src/config.h \ 544 $(EMACS_ROOT)/src/config.h \
545 $(SRC)/s/ms-w32.h \ 545 $(SRC)/s/ms-w32.h \
546 $(SRC)/m/intel386.h \ 546 $(SRC)/m/intel386.h \
547 $(SRC)/config.h 547 $(SRC)/config.h
548 548
549$(BLD)/firstfile.obj : \ 549$(BLD)/firstfile.obj : \
550 $(SRC)/firstfile.c \ 550 $(SRC)/firstfile.c \
551 $(EMACS_ROOT)/src/s/ms-w32.h \ 551 $(EMACS_ROOT)/src/s/ms-w32.h \
552 $(EMACS_ROOT)/src/m/intel386.h \ 552 $(EMACS_ROOT)/src/m/intel386.h \
553 $(EMACS_ROOT)/src/config.h 553 $(EMACS_ROOT)/src/config.h
554 554
555$(BLD)/floatfns.obj : \ 555$(BLD)/floatfns.obj : \
556 $(SRC)/floatfns.c \ 556 $(SRC)/floatfns.c \
557 $(EMACS_ROOT)/src/s/ms-w32.h \ 557 $(EMACS_ROOT)/src/s/ms-w32.h \
558 $(EMACS_ROOT)/src/m/intel386.h \ 558 $(EMACS_ROOT)/src/m/intel386.h \
559 $(EMACS_ROOT)/src/config.h \ 559 $(EMACS_ROOT)/src/config.h \
560 $(SRC)/syssignal.h 560 $(SRC)/syssignal.h
561 561
562$(BLD)/fns.obj : \ 562$(BLD)/fns.obj : \
563 $(SRC)/fns.c \ 563 $(SRC)/fns.c \
564 $(EMACS_ROOT)/src/s/ms-w32.h \ 564 $(EMACS_ROOT)/src/s/ms-w32.h \
565 $(EMACS_ROOT)/src/m/intel386.h \ 565 $(EMACS_ROOT)/src/m/intel386.h \
566 $(EMACS_ROOT)/src/config.h \ 566 $(EMACS_ROOT)/src/config.h \
567 $(SRC)/commands.h \ 567 $(SRC)/commands.h \
568 $(SRC)/buffer.h \ 568 $(SRC)/buffer.h \
569 $(SRC)/keyboard.h \ 569 $(SRC)/keyboard.h \
570 $(SRC)/dispextern.h \ 570 $(SRC)/dispextern.h \
571 $(SRC)/intervals.h \ 571 $(SRC)/intervals.h \
572 $(SRC)/composite.h 572 $(SRC)/composite.h
573 573
574$(BLD)/frame.obj : \ 574$(BLD)/frame.obj : \
575 $(SRC)/frame.c \ 575 $(SRC)/frame.c \
576 $(EMACS_ROOT)/src/s/ms-w32.h \ 576 $(EMACS_ROOT)/src/s/ms-w32.h \
577 $(EMACS_ROOT)/src/m/intel386.h \ 577 $(EMACS_ROOT)/src/m/intel386.h \
578 $(EMACS_ROOT)/src/config.h \ 578 $(EMACS_ROOT)/src/config.h \
579 $(SRC)/frame.h \ 579 $(SRC)/frame.h \
580 $(SRC)/termhooks.h \ 580 $(SRC)/termhooks.h \
581 $(SRC)/window.h \ 581 $(SRC)/window.h \
582 $(SRC)/buffer.h \ 582 $(SRC)/buffer.h \
583 $(SRC)/commands.h \ 583 $(SRC)/commands.h \
584 $(SRC)/keyboard.h 584 $(SRC)/keyboard.h
585 585
586$(BLD)/getloadavg.obj : \ 586$(BLD)/getloadavg.obj : \
587 $(SRC)/getloadavg.c \ 587 $(SRC)/getloadavg.c \
588 $(EMACS_ROOT)/nt/inc/sys/param.h \ 588 $(EMACS_ROOT)/nt/inc/sys/param.h \
589 $(EMACS_ROOT)/src/s/ms-w32.h \ 589 $(EMACS_ROOT)/src/s/ms-w32.h \
590 $(EMACS_ROOT)/src/m/intel386.h \ 590 $(EMACS_ROOT)/src/m/intel386.h \
591 $(EMACS_ROOT)/src/config.h \ 591 $(EMACS_ROOT)/src/config.h \
592 $(SRC)/s/ms-w32.h \ 592 $(SRC)/s/ms-w32.h \
593 $(SRC)/m/intel386.h \ 593 $(SRC)/m/intel386.h \
594 $(SRC)/config.h \ 594 $(SRC)/config.h \
595 $(EMACS_ROOT)/nt/inc/sys/file.h 595 $(EMACS_ROOT)/nt/inc/sys/file.h
596 596
597$(BLD)/gmalloc.obj : \ 597$(BLD)/gmalloc.obj : \
598 $(SRC)/gmalloc.c \ 598 $(SRC)/gmalloc.c \
599 $(EMACS_ROOT)/src/s/ms-w32.h \ 599 $(EMACS_ROOT)/src/s/ms-w32.h \
600 $(EMACS_ROOT)/src/m/intel386.h \ 600 $(EMACS_ROOT)/src/m/intel386.h \
601 $(EMACS_ROOT)/src/config.h \ 601 $(EMACS_ROOT)/src/config.h \
602 $(EMACS_ROOT)/nt/inc/sys/param.h \ 602 $(EMACS_ROOT)/nt/inc/sys/param.h \
603 $(SRC)/getpagesize.h 603 $(SRC)/getpagesize.h
604 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c 604 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c
605 605
606$(BLD)/hftctl.obj : \ 606$(BLD)/hftctl.obj : \
607 $(SRC)/hftctl.c \ 607 $(SRC)/hftctl.c \
608 $(EMACS_ROOT)/src/s/ms-w32.h \ 608 $(EMACS_ROOT)/src/s/ms-w32.h \
609 $(EMACS_ROOT)/src/m/intel386.h \ 609 $(EMACS_ROOT)/src/m/intel386.h \
610 $(EMACS_ROOT)/src/config.h \ 610 $(EMACS_ROOT)/src/config.h \
611 $(EMACS_ROOT)/nt/inc/sys/ioctl.h 611 $(EMACS_ROOT)/nt/inc/sys/ioctl.h
612 612
613$(BLD)/indent.obj : \ 613$(BLD)/indent.obj : \
614 $(SRC)/indent.c \ 614 $(SRC)/indent.c \
615 $(EMACS_ROOT)/src/s/ms-w32.h \ 615 $(EMACS_ROOT)/src/s/ms-w32.h \
616 $(EMACS_ROOT)/src/m/intel386.h \ 616 $(EMACS_ROOT)/src/m/intel386.h \
617 $(EMACS_ROOT)/src/config.h \ 617 $(EMACS_ROOT)/src/config.h \
618 $(SRC)/buffer.h \ 618 $(SRC)/buffer.h \
619 $(SRC)/indent.h \ 619 $(SRC)/indent.h \
620 $(SRC)/frame.h \ 620 $(SRC)/frame.h \
621 $(SRC)/window.h \ 621 $(SRC)/window.h \
622 $(SRC)/termchar.h \ 622 $(SRC)/termchar.h \
623 $(SRC)/termopts.h \ 623 $(SRC)/termopts.h \
624 $(SRC)/disptab.h \ 624 $(SRC)/disptab.h \
625 $(SRC)/dispextern.h \ 625 $(SRC)/dispextern.h \
626 $(SRC)/intervals.h \ 626 $(SRC)/intervals.h \
627 $(SRC)/region-cache.h \ 627 $(SRC)/region-cache.h \
628 $(SRC)/composite.h 628 $(SRC)/composite.h
629 629
630$(BLD)/insdel.obj : \ 630$(BLD)/insdel.obj : \
631 $(SRC)/insdel.c \ 631 $(SRC)/insdel.c \
632 $(EMACS_ROOT)/src/s/ms-w32.h \ 632 $(EMACS_ROOT)/src/s/ms-w32.h \
633 $(EMACS_ROOT)/src/m/intel386.h \ 633 $(EMACS_ROOT)/src/m/intel386.h \
634 $(EMACS_ROOT)/src/config.h \ 634 $(EMACS_ROOT)/src/config.h \
635 $(SRC)/dispextern.h \ 635 $(SRC)/dispextern.h \
636 $(SRC)/intervals.h \ 636 $(SRC)/intervals.h \
637 $(SRC)/composite.h \ 637 $(SRC)/composite.h \
638 $(SRC)/buffer.h \ 638 $(SRC)/buffer.h \
639 $(SRC)/window.h \ 639 $(SRC)/window.h \
640 $(SRC)/blockinput.h 640 $(SRC)/blockinput.h
641 641
642$(BLD)/intervals.obj : \ 642$(BLD)/intervals.obj : \
643 $(SRC)/intervals.c \ 643 $(SRC)/intervals.c \
644 $(EMACS_ROOT)/src/s/ms-w32.h \ 644 $(EMACS_ROOT)/src/s/ms-w32.h \
645 $(EMACS_ROOT)/src/m/intel386.h \ 645 $(EMACS_ROOT)/src/m/intel386.h \
646 $(EMACS_ROOT)/src/config.h \ 646 $(EMACS_ROOT)/src/config.h \
647 $(SRC)/dispextern.h \ 647 $(SRC)/dispextern.h \
648 $(SRC)/intervals.h \ 648 $(SRC)/intervals.h \
649 $(SRC)/composite.h \ 649 $(SRC)/composite.h \
650 $(SRC)/keyboard.h \ 650 $(SRC)/keyboard.h \
651 $(SRC)/buffer.h \ 651 $(SRC)/buffer.h \
652 $(SRC)/puresize.h 652 $(SRC)/puresize.h
653 653
654$(BLD)/keyboard.obj : \ 654$(BLD)/keyboard.obj : \
655 $(SRC)/keyboard.c \ 655 $(SRC)/keyboard.c \
656 $(EMACS_ROOT)/src/s/ms-w32.h \ 656 $(EMACS_ROOT)/src/s/ms-w32.h \
657 $(EMACS_ROOT)/src/m/intel386.h \ 657 $(EMACS_ROOT)/src/m/intel386.h \
658 $(EMACS_ROOT)/src/config.h \ 658 $(EMACS_ROOT)/src/config.h \
659 $(SRC)/termchar.h \ 659 $(SRC)/termchar.h \
660 $(SRC)/termopts.h \ 660 $(SRC)/termopts.h \
661 $(SRC)/termhooks.h \ 661 $(SRC)/termhooks.h \
662 $(SRC)/macros.h \ 662 $(SRC)/macros.h \
663 $(SRC)/frame.h \ 663 $(SRC)/frame.h \
664 $(SRC)/window.h \ 664 $(SRC)/window.h \
665 $(SRC)/commands.h \ 665 $(SRC)/commands.h \
666 $(SRC)/buffer.h \ 666 $(SRC)/buffer.h \
667 $(SRC)/disptab.h \ 667 $(SRC)/disptab.h \
668 $(SRC)/keyboard.h \ 668 $(SRC)/keyboard.h \
669 $(SRC)/dispextern.h \ 669 $(SRC)/dispextern.h \
670 $(SRC)/intervals.h \ 670 $(SRC)/intervals.h \
671 $(SRC)/composite.h \ 671 $(SRC)/composite.h \
672 $(SRC)/blockinput.h \ 672 $(SRC)/blockinput.h \
673 $(SRC)/msdos.h \ 673 $(SRC)/msdos.h \
674 $(SRC)/syssignal.h \ 674 $(SRC)/syssignal.h \
675 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 675 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
676 $(EMACS_ROOT)/nt/inc/sys/file.h \ 676 $(EMACS_ROOT)/nt/inc/sys/file.h \
677 $(SRC)/systty.h \ 677 $(SRC)/systty.h \
678 $(SRC)/w32term.h \ 678 $(SRC)/w32term.h \
679 $(SRC)/xterm.h \ 679 $(SRC)/xterm.h \
680 $(SRC)/vmstime.h \ 680 $(SRC)/vmstime.h \
681 $(SRC)/systime.h \ 681 $(SRC)/systime.h \
682 $(SRC)/atimer.h 682 $(SRC)/atimer.h
683 683
684$(BLD)/keymap.obj : \ 684$(BLD)/keymap.obj : \
685 $(SRC)/keymap.c \ 685 $(SRC)/keymap.c \
686 $(EMACS_ROOT)/src/s/ms-w32.h \ 686 $(EMACS_ROOT)/src/s/ms-w32.h \
687 $(EMACS_ROOT)/src/m/intel386.h \ 687 $(EMACS_ROOT)/src/m/intel386.h \
688 $(EMACS_ROOT)/src/config.h \ 688 $(EMACS_ROOT)/src/config.h \
689 $(SRC)/commands.h \ 689 $(SRC)/commands.h \
690 $(SRC)/buffer.h \ 690 $(SRC)/buffer.h \
691 $(SRC)/keyboard.h \ 691 $(SRC)/keyboard.h \
692 $(SRC)/termhooks.h \ 692 $(SRC)/termhooks.h \
693 $(SRC)/blockinput.h 693 $(SRC)/blockinput.h
694 694
695$(BLD)/lastfile.obj : \ 695$(BLD)/lastfile.obj : \
696 $(SRC)/lastfile.c \ 696 $(SRC)/lastfile.c \
697 $(EMACS_ROOT)/src/s/ms-w32.h \ 697 $(EMACS_ROOT)/src/s/ms-w32.h \
698 $(EMACS_ROOT)/src/m/intel386.h \ 698 $(EMACS_ROOT)/src/m/intel386.h \
699 $(EMACS_ROOT)/src/config.h 699 $(EMACS_ROOT)/src/config.h
700 700
701$(BLD)/lread.obj : \ 701$(BLD)/lread.obj : \
702 $(SRC)/lread.c \ 702 $(SRC)/lread.c \
703 $(EMACS_ROOT)/src/s/ms-w32.h \ 703 $(EMACS_ROOT)/src/s/ms-w32.h \
704 $(EMACS_ROOT)/src/m/intel386.h \ 704 $(EMACS_ROOT)/src/m/intel386.h \
705 $(EMACS_ROOT)/src/config.h \ 705 $(EMACS_ROOT)/src/config.h \
706 $(EMACS_ROOT)/nt/inc/sys/file.h \ 706 $(EMACS_ROOT)/nt/inc/sys/file.h \
707 $(SRC)/buffer.h \ 707 $(SRC)/buffer.h \
708 $(EMACS_ROOT)/src/epaths.h \ 708 $(EMACS_ROOT)/src/epaths.h \
709 $(SRC)/commands.h \ 709 $(SRC)/commands.h \
710 $(SRC)/keyboard.h \ 710 $(SRC)/keyboard.h \
711 $(SRC)/termhooks.h \ 711 $(SRC)/termhooks.h \
712 $(SRC)/msdos.h 712 $(SRC)/msdos.h
713 713
714$(BLD)/macros.obj : \ 714$(BLD)/macros.obj : \
715 $(SRC)/macros.c \ 715 $(SRC)/macros.c \
716 $(EMACS_ROOT)/src/s/ms-w32.h \ 716 $(EMACS_ROOT)/src/s/ms-w32.h \
717 $(EMACS_ROOT)/src/m/intel386.h \ 717 $(EMACS_ROOT)/src/m/intel386.h \
718 $(EMACS_ROOT)/src/config.h \ 718 $(EMACS_ROOT)/src/config.h \
719 $(SRC)/macros.h \ 719 $(SRC)/macros.h \
720 $(SRC)/commands.h \ 720 $(SRC)/commands.h \
721 $(SRC)/buffer.h \ 721 $(SRC)/buffer.h \
722 $(SRC)/window.h 722 $(SRC)/window.h
723 723
724$(BLD)/marker.obj : \ 724$(BLD)/marker.obj : \
725 $(SRC)/marker.c \ 725 $(SRC)/marker.c \
726 $(EMACS_ROOT)/src/s/ms-w32.h \ 726 $(EMACS_ROOT)/src/s/ms-w32.h \
727 $(EMACS_ROOT)/src/m/intel386.h \ 727 $(EMACS_ROOT)/src/m/intel386.h \
728 $(EMACS_ROOT)/src/config.h \ 728 $(EMACS_ROOT)/src/config.h \
729 $(SRC)/buffer.h 729 $(SRC)/buffer.h
730 730
731$(BLD)/minibuf.obj : \ 731$(BLD)/minibuf.obj : \
732 $(SRC)/minibuf.c \ 732 $(SRC)/minibuf.c \
733 $(EMACS_ROOT)/src/s/ms-w32.h \ 733 $(EMACS_ROOT)/src/s/ms-w32.h \
734 $(EMACS_ROOT)/src/m/intel386.h \ 734 $(EMACS_ROOT)/src/m/intel386.h \
735 $(EMACS_ROOT)/src/config.h \ 735 $(EMACS_ROOT)/src/config.h \
736 $(SRC)/commands.h \ 736 $(SRC)/commands.h \
737 $(SRC)/buffer.h \ 737 $(SRC)/buffer.h \
738 $(SRC)/dispextern.h \ 738 $(SRC)/dispextern.h \
739 $(SRC)/frame.h \ 739 $(SRC)/frame.h \
740 $(SRC)/window.h \ 740 $(SRC)/window.h \
741 $(SRC)/syntax.h 741 $(SRC)/syntax.h
742 742
743$(BLD)/mocklisp.obj : \ 743$(BLD)/mocklisp.obj : \
744 $(SRC)/mocklisp.c \ 744 $(SRC)/mocklisp.c \
745 $(EMACS_ROOT)/src/s/ms-w32.h \ 745 $(EMACS_ROOT)/src/s/ms-w32.h \
746 $(EMACS_ROOT)/src/m/intel386.h \ 746 $(EMACS_ROOT)/src/m/intel386.h \
747 $(EMACS_ROOT)/src/config.h \ 747 $(EMACS_ROOT)/src/config.h \
748 $(SRC)/buffer.h 748 $(SRC)/buffer.h
749 749
750$(BLD)/w32.obj : \ 750$(BLD)/w32.obj : \
751 $(SRC)/w32.c \ 751 $(SRC)/w32.c \
752 $(SRC)/w32.h \ 752 $(SRC)/w32.h \
753 $(SRC)/s/ms-w32.h \ 753 $(SRC)/s/ms-w32.h \
754 $(SRC)/m/intel386.h \ 754 $(SRC)/m/intel386.h \
755 $(SRC)/config.h \ 755 $(SRC)/config.h \
756 $(EMACS_ROOT)/nt/inc/pwd.h \ 756 $(EMACS_ROOT)/nt/inc/pwd.h \
757 $(SRC)/w32heap.h 757 $(SRC)/w32heap.h
758 758
759$(BLD)/w32heap.obj : \ 759$(BLD)/w32heap.obj : \
760 $(SRC)/w32heap.c \ 760 $(SRC)/w32heap.c \
761 $(SRC)/w32heap.h \ 761 $(SRC)/w32heap.h \
762 $(SRC)/s/ms-w32.h \ 762 $(SRC)/s/ms-w32.h \
763 $(SRC)/m/intel386.h \ 763 $(SRC)/m/intel386.h \
764 $(SRC)/config.h 764 $(SRC)/config.h
765 765
766$(BLD)/w32inevt.obj : \ 766$(BLD)/w32inevt.obj : \
767 $(SRC)/w32inevt.c \ 767 $(SRC)/w32inevt.c \
768 $(SRC)/s/ms-w32.h \ 768 $(SRC)/s/ms-w32.h \
769 $(SRC)/m/intel386.h \ 769 $(SRC)/m/intel386.h \
770 $(SRC)/config.h \ 770 $(SRC)/config.h \
771 $(SRC)/frame.h \ 771 $(SRC)/frame.h \
772 $(SRC)/blockinput.h \ 772 $(SRC)/blockinput.h \
773 $(SRC)/termhooks.h \ 773 $(SRC)/termhooks.h \
774 $(SRC)/w32heap.h \ 774 $(SRC)/w32heap.h \
775 $(SRC)/w32term.h 775 $(SRC)/w32term.h
776 776
777$(BLD)/w32proc.obj : \ 777$(BLD)/w32proc.obj : \
778 $(SRC)/w32proc.c \ 778 $(SRC)/w32proc.c \
779 $(SRC)/s/ms-w32.h \ 779 $(SRC)/s/ms-w32.h \
780 $(SRC)/m/intel386.h \ 780 $(SRC)/m/intel386.h \
781 $(SRC)/config.h \ 781 $(SRC)/config.h \
782 $(SRC)/w32.h \ 782 $(SRC)/w32.h \
783 $(SRC)/w32heap.h \ 783 $(SRC)/w32heap.h \
784 $(SRC)/vmstime.h \ 784 $(SRC)/vmstime.h \
785 $(SRC)/systime.h 785 $(SRC)/systime.h
786 786
787$(BLD)/w32console.obj : \ 787$(BLD)/w32console.obj : \
788 $(SRC)/w32console.c \ 788 $(SRC)/w32console.c \
789 $(SRC)/s/ms-w32.h \ 789 $(SRC)/s/ms-w32.h \
790 $(SRC)/m/intel386.h \ 790 $(SRC)/m/intel386.h \
791 $(SRC)/config.h \ 791 $(SRC)/config.h \
792 $(SRC)/frame.h \ 792 $(SRC)/frame.h \
793 $(SRC)/disptab.h \ 793 $(SRC)/disptab.h \
794 $(SRC)/termhooks.h \ 794 $(SRC)/termhooks.h \
795 $(SRC)/w32inevt.h 795 $(SRC)/w32inevt.h
796 796
797$(BLD)/prefix-args.obj : \ 797$(BLD)/prefix-args.obj : \
798 $(SRC)/prefix-args.c 798 $(SRC)/prefix-args.c
799 799
800$(BLD)/print.obj : \ 800$(BLD)/print.obj : \
801 $(SRC)/print.c \ 801 $(SRC)/print.c \
802 $(EMACS_ROOT)/src/s/ms-w32.h \ 802 $(EMACS_ROOT)/src/s/ms-w32.h \
803 $(EMACS_ROOT)/src/m/intel386.h \ 803 $(EMACS_ROOT)/src/m/intel386.h \
804 $(EMACS_ROOT)/src/config.h \ 804 $(EMACS_ROOT)/src/config.h \
805 $(SRC)/buffer.h \ 805 $(SRC)/buffer.h \
806 $(SRC)/frame.h \ 806 $(SRC)/frame.h \
807 $(SRC)/window.h \ 807 $(SRC)/window.h \
808 $(SRC)/process.h \ 808 $(SRC)/process.h \
809 $(SRC)/termchar.h \ 809 $(SRC)/termchar.h \
810 $(SRC)/dispextern.h \ 810 $(SRC)/dispextern.h \
811 $(SRC)/intervals.h \ 811 $(SRC)/intervals.h \
812 $(SRC)/composite.h 812 $(SRC)/composite.h
813 813
814$(BLD)/process.obj : \ 814$(BLD)/process.obj : \
815 $(SRC)/process.c \ 815 $(SRC)/process.c \
816 $(EMACS_ROOT)/src/s/ms-w32.h \ 816 $(EMACS_ROOT)/src/s/ms-w32.h \
817 $(EMACS_ROOT)/src/m/intel386.h \ 817 $(EMACS_ROOT)/src/m/intel386.h \
818 $(EMACS_ROOT)/src/config.h \ 818 $(EMACS_ROOT)/src/config.h \
819 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 819 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
820 $(EMACS_ROOT)/nt/inc/sys/file.h \ 820 $(EMACS_ROOT)/nt/inc/sys/file.h \
821 $(SRC)/systty.h \ 821 $(SRC)/systty.h \
822 $(SRC)/window.h \ 822 $(SRC)/window.h \
823 $(SRC)/buffer.h \ 823 $(SRC)/buffer.h \
824 $(SRC)/process.h \ 824 $(SRC)/process.h \
825 $(SRC)/termhooks.h \ 825 $(SRC)/termhooks.h \
826 $(SRC)/commands.h \ 826 $(SRC)/commands.h \
827 $(SRC)/frame.h \ 827 $(SRC)/frame.h \
828 $(SRC)/syssignal.h \ 828 $(SRC)/syssignal.h \
829 $(SRC)/vmsproc.h \ 829 $(SRC)/vmsproc.h \
830 $(SRC)/syswait.h \ 830 $(SRC)/syswait.h \
831 $(SRC)/vmstime.h \ 831 $(SRC)/vmstime.h \
832 $(SRC)/systime.h \ 832 $(SRC)/systime.h \
833 $(SRC)/termopts.h \ 833 $(SRC)/termopts.h \
834 $(SRC)/composite.h \ 834 $(SRC)/composite.h \
835 $(SRC)/atimer.h 835 $(SRC)/atimer.h
836 836
837$(BLD)/ralloc.obj : \ 837$(BLD)/ralloc.obj : \
838 $(SRC)/ralloc.c \ 838 $(SRC)/ralloc.c \
839 $(EMACS_ROOT)/src/s/ms-w32.h \ 839 $(EMACS_ROOT)/src/s/ms-w32.h \
840 $(EMACS_ROOT)/src/m/intel386.h \ 840 $(EMACS_ROOT)/src/m/intel386.h \
841 $(EMACS_ROOT)/src/config.h \ 841 $(EMACS_ROOT)/src/config.h \
842 $(SRC)/s/ms-w32.h \ 842 $(SRC)/s/ms-w32.h \
843 $(SRC)/m/intel386.h \ 843 $(SRC)/m/intel386.h \
844 $(SRC)/config.h \ 844 $(SRC)/config.h \
845 $(EMACS_ROOT)/nt/inc/sys/param.h \ 845 $(EMACS_ROOT)/nt/inc/sys/param.h \
846 $(SRC)/getpagesize.h 846 $(SRC)/getpagesize.h
847 847
848$(BLD)/regex.obj : \ 848$(BLD)/regex.obj : \
849 $(SRC)/regex.c \ 849 $(SRC)/regex.c \
850 $(EMACS_ROOT)/src/s/ms-w32.h \ 850 $(EMACS_ROOT)/src/s/ms-w32.h \
851 $(EMACS_ROOT)/src/m/intel386.h \ 851 $(EMACS_ROOT)/src/m/intel386.h \
852 $(EMACS_ROOT)/src/config.h \ 852 $(EMACS_ROOT)/src/config.h \
853 $(SRC)/s/ms-w32.h \ 853 $(SRC)/s/ms-w32.h \
854 $(SRC)/m/intel386.h \ 854 $(SRC)/m/intel386.h \
855 $(SRC)/config.h \ 855 $(SRC)/config.h \
856 $(SRC)/buffer.h \ 856 $(SRC)/buffer.h \
857 $(SRC)/syntax.h \ 857 $(SRC)/syntax.h \
858 $(SRC)/regex.h 858 $(SRC)/regex.h
859 859
860$(BLD)/region-cache.obj : \ 860$(BLD)/region-cache.obj : \
861 $(SRC)/region-cache.c \ 861 $(SRC)/region-cache.c \
862 $(EMACS_ROOT)/src/s/ms-w32.h \ 862 $(EMACS_ROOT)/src/s/ms-w32.h \
863 $(EMACS_ROOT)/src/m/intel386.h \ 863 $(EMACS_ROOT)/src/m/intel386.h \
864 $(EMACS_ROOT)/src/config.h \ 864 $(EMACS_ROOT)/src/config.h \
865 $(SRC)/buffer.h \ 865 $(SRC)/buffer.h \
866 $(SRC)/region-cache.h 866 $(SRC)/region-cache.h
867 867
868$(BLD)/scroll.obj : \ 868$(BLD)/scroll.obj : \
869 $(SRC)/scroll.c \ 869 $(SRC)/scroll.c \
870 $(EMACS_ROOT)/src/s/ms-w32.h \ 870 $(EMACS_ROOT)/src/s/ms-w32.h \
871 $(EMACS_ROOT)/src/m/intel386.h \ 871 $(EMACS_ROOT)/src/m/intel386.h \
872 $(EMACS_ROOT)/src/config.h \ 872 $(EMACS_ROOT)/src/config.h \
873 $(SRC)/termchar.h \ 873 $(SRC)/termchar.h \
874 $(SRC)/dispextern.h \ 874 $(SRC)/dispextern.h \
875 $(SRC)/frame.h 875 $(SRC)/frame.h
876 876
877$(BLD)/search.obj : \ 877$(BLD)/search.obj : \
878 $(SRC)/search.c \ 878 $(SRC)/search.c \
879 $(EMACS_ROOT)/src/s/ms-w32.h \ 879 $(EMACS_ROOT)/src/s/ms-w32.h \
880 $(EMACS_ROOT)/src/m/intel386.h \ 880 $(EMACS_ROOT)/src/m/intel386.h \
881 $(EMACS_ROOT)/src/config.h \ 881 $(EMACS_ROOT)/src/config.h \
882 $(SRC)/syntax.h \ 882 $(SRC)/syntax.h \
883 $(SRC)/buffer.h \ 883 $(SRC)/buffer.h \
884 $(SRC)/commands.h \ 884 $(SRC)/commands.h \
885 $(SRC)/blockinput.h \ 885 $(SRC)/blockinput.h \
886 $(SRC)/regex.h \ 886 $(SRC)/regex.h \
887 $(SRC)/region-cache.h \ 887 $(SRC)/region-cache.h \
888 $(SRC)/composite.h 888 $(SRC)/composite.h
889 889
890$(BLD)/strftime.obj : \ 890$(BLD)/strftime.obj : \
891 $(SRC)/strftime.c \ 891 $(SRC)/strftime.c \
892 $(EMACS_ROOT)/src/s/ms-w32.h \ 892 $(EMACS_ROOT)/src/s/ms-w32.h \
893 $(EMACS_ROOT)/src/m/intel386.h \ 893 $(EMACS_ROOT)/src/m/intel386.h \
894 $(EMACS_ROOT)/src/config.h 894 $(EMACS_ROOT)/src/config.h
895 895
896$(BLD)/sunfns.obj : \ 896$(BLD)/sunfns.obj : \
897 $(SRC)/sunfns.c \ 897 $(SRC)/sunfns.c \
898 $(EMACS_ROOT)/src/s/ms-w32.h \ 898 $(EMACS_ROOT)/src/s/ms-w32.h \
899 $(EMACS_ROOT)/src/m/intel386.h \ 899 $(EMACS_ROOT)/src/m/intel386.h \
900 $(EMACS_ROOT)/src/config.h \ 900 $(EMACS_ROOT)/src/config.h \
901 $(SRC)/window.h \ 901 $(SRC)/window.h \
902 $(SRC)/buffer.h \ 902 $(SRC)/buffer.h \
903 $(SRC)/termhooks.h 903 $(SRC)/termhooks.h
904 904
905$(BLD)/syntax.obj : \ 905$(BLD)/syntax.obj : \
906 $(SRC)/syntax.c \ 906 $(SRC)/syntax.c \
907 $(EMACS_ROOT)/src/s/ms-w32.h \ 907 $(EMACS_ROOT)/src/s/ms-w32.h \
908 $(EMACS_ROOT)/src/m/intel386.h \ 908 $(EMACS_ROOT)/src/m/intel386.h \
909 $(EMACS_ROOT)/src/config.h \ 909 $(EMACS_ROOT)/src/config.h \
910 $(SRC)/commands.h \ 910 $(SRC)/commands.h \
911 $(SRC)/buffer.h \ 911 $(SRC)/buffer.h \
912 $(SRC)/syntax.h \ 912 $(SRC)/syntax.h \
913 $(SRC)/composite.h 913 $(SRC)/composite.h
914 914
915$(BLD)/sysdep.obj : \ 915$(BLD)/sysdep.obj : \
916 $(SRC)/sysdep.c \ 916 $(SRC)/sysdep.c \
917 $(EMACS_ROOT)/src/s/ms-w32.h \ 917 $(EMACS_ROOT)/src/s/ms-w32.h \
918 $(EMACS_ROOT)/src/m/intel386.h \ 918 $(EMACS_ROOT)/src/m/intel386.h \
919 $(EMACS_ROOT)/src/config.h \ 919 $(EMACS_ROOT)/src/config.h \
920 $(SRC)/blockinput.h \ 920 $(SRC)/blockinput.h \
921 $(SRC)/dosfns.h \ 921 $(SRC)/dosfns.h \
922 $(SRC)/msdos.h \ 922 $(SRC)/msdos.h \
923 $(EMACS_ROOT)/nt/inc/sys/param.h \ 923 $(EMACS_ROOT)/nt/inc/sys/param.h \
924 $(EMACS_ROOT)/nt/inc/sys/file.h \ 924 $(EMACS_ROOT)/nt/inc/sys/file.h \
925 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 925 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
926 $(EMACS_ROOT)/nt/inc/sys/file.h \ 926 $(EMACS_ROOT)/nt/inc/sys/file.h \
927 $(SRC)/systty.h \ 927 $(SRC)/systty.h \
928 $(SRC)/vmsproc.h \ 928 $(SRC)/vmsproc.h \
929 $(SRC)/syswait.h \ 929 $(SRC)/syswait.h \
930 $(SRC)/frame.h \ 930 $(SRC)/frame.h \
931 $(SRC)/window.h \ 931 $(SRC)/window.h \
932 $(SRC)/termhooks.h \ 932 $(SRC)/termhooks.h \
933 $(SRC)/termchar.h \ 933 $(SRC)/termchar.h \
934 $(SRC)/termopts.h \ 934 $(SRC)/termopts.h \
935 $(SRC)/dispextern.h \ 935 $(SRC)/dispextern.h \
936 $(SRC)/process.h \ 936 $(SRC)/process.h \
937 $(SRC)/vmsdir.h \ 937 $(SRC)/vmsdir.h \
938 $(SRC)/ndir.h \ 938 $(SRC)/ndir.h \
939 $(SRC)/syssignal.h \ 939 $(SRC)/syssignal.h \
940 $(SRC)/vmstime.h \ 940 $(SRC)/vmstime.h \
941 $(SRC)/systime.h \ 941 $(SRC)/systime.h \
942 $(SRC)/uaf.h \ 942 $(SRC)/uaf.h \
943 $(SRC)/vms-pwd.h \ 943 $(SRC)/vms-pwd.h \
944 $(EMACS_ROOT)/src/acldef.h \ 944 $(EMACS_ROOT)/src/acldef.h \
945 $(EMACS_ROOT)/src/chpdef.h 945 $(EMACS_ROOT)/src/chpdef.h
946 946
947$(BLD)/term.obj : \ 947$(BLD)/term.obj : \
948 $(SRC)/term.c \ 948 $(SRC)/term.c \
949 $(EMACS_ROOT)/src/s/ms-w32.h \ 949 $(EMACS_ROOT)/src/s/ms-w32.h \
950 $(EMACS_ROOT)/src/m/intel386.h \ 950 $(EMACS_ROOT)/src/m/intel386.h \
951 $(EMACS_ROOT)/src/config.h \ 951 $(EMACS_ROOT)/src/config.h \
952 $(SRC)/termchar.h \ 952 $(SRC)/termchar.h \
953 $(SRC)/termopts.h \ 953 $(SRC)/termopts.h \
954 $(SRC)/cm.h \ 954 $(SRC)/cm.h \
955 $(SRC)/frame.h \ 955 $(SRC)/frame.h \
956 $(SRC)/disptab.h \ 956 $(SRC)/disptab.h \
957 $(SRC)/termhooks.h \ 957 $(SRC)/termhooks.h \
958 $(SRC)/keyboard.h 958 $(SRC)/keyboard.h
959 959
960$(BLD)/termcap.obj : \ 960$(BLD)/termcap.obj : \
961 $(SRC)/termcap.c \ 961 $(SRC)/termcap.c \
962 $(EMACS_ROOT)/src/s/ms-w32.h \ 962 $(EMACS_ROOT)/src/s/ms-w32.h \
963 $(EMACS_ROOT)/src/m/intel386.h \ 963 $(EMACS_ROOT)/src/m/intel386.h \
964 $(EMACS_ROOT)/src/config.h \ 964 $(EMACS_ROOT)/src/config.h \
965 $(EMACS_ROOT)/nt/inc/sys/file.h 965 $(EMACS_ROOT)/nt/inc/sys/file.h
966 966
967$(BLD)/terminfo.obj : \ 967$(BLD)/terminfo.obj : \
968 $(SRC)/terminfo.c 968 $(SRC)/terminfo.c
969 969
970$(BLD)/textprop.obj : \ 970$(BLD)/textprop.obj : \
971 $(SRC)/textprop.c \ 971 $(SRC)/textprop.c \
972 $(EMACS_ROOT)/src/s/ms-w32.h \ 972 $(EMACS_ROOT)/src/s/ms-w32.h \
973 $(EMACS_ROOT)/src/m/intel386.h \ 973 $(EMACS_ROOT)/src/m/intel386.h \
974 $(EMACS_ROOT)/src/config.h \ 974 $(EMACS_ROOT)/src/config.h \
975 $(SRC)/dispextern.h \ 975 $(SRC)/dispextern.h \
976 $(SRC)/intervals.h \ 976 $(SRC)/intervals.h \
977 $(SRC)/composite.h \ 977 $(SRC)/composite.h \
978 $(SRC)/buffer.h \ 978 $(SRC)/buffer.h \
979 $(SRC)/window.h 979 $(SRC)/window.h
980 980
981$(BLD)/tparam.obj : \ 981$(BLD)/tparam.obj : \
982 $(SRC)/tparam.c \ 982 $(SRC)/tparam.c \
983 $(EMACS_ROOT)/src/s/ms-w32.h \ 983 $(EMACS_ROOT)/src/s/ms-w32.h \
984 $(EMACS_ROOT)/src/m/intel386.h \ 984 $(EMACS_ROOT)/src/m/intel386.h \
985 $(EMACS_ROOT)/src/config.h 985 $(EMACS_ROOT)/src/config.h
986 986
987$(BLD)/undo.obj : \ 987$(BLD)/undo.obj : \
988 $(SRC)/undo.c \ 988 $(SRC)/undo.c \
989 $(EMACS_ROOT)/src/s/ms-w32.h \ 989 $(EMACS_ROOT)/src/s/ms-w32.h \
990 $(EMACS_ROOT)/src/m/intel386.h \ 990 $(EMACS_ROOT)/src/m/intel386.h \
991 $(EMACS_ROOT)/src/config.h \ 991 $(EMACS_ROOT)/src/config.h \
992 $(SRC)/buffer.h \ 992 $(SRC)/buffer.h \
993 $(SRC)/commands.h 993 $(SRC)/commands.h
994 994
995$(BLD)/unexw32.obj : \ 995$(BLD)/unexw32.obj : \
996 $(SRC)/unexw32.c \ 996 $(SRC)/unexw32.c \
997 $(EMACS_ROOT)/src/s/ms-w32.h \ 997 $(EMACS_ROOT)/src/s/ms-w32.h \
998 $(EMACS_ROOT)/src/m/intel386.h \ 998 $(EMACS_ROOT)/src/m/intel386.h \
999 $(EMACS_ROOT)/src/config.h \ 999 $(EMACS_ROOT)/src/config.h \
1000 $(SRC)/w32heap.h 1000 $(SRC)/w32heap.h
1001 1001
1002$(BLD)/vm-limit.obj : \ 1002$(BLD)/vm-limit.obj : \
1003 $(SRC)/vm-limit.c \ 1003 $(SRC)/vm-limit.c \
1004 $(EMACS_ROOT)/src/s/ms-w32.h \ 1004 $(EMACS_ROOT)/src/s/ms-w32.h \
1005 $(EMACS_ROOT)/src/m/intel386.h \ 1005 $(EMACS_ROOT)/src/m/intel386.h \
1006 $(EMACS_ROOT)/src/config.h \ 1006 $(EMACS_ROOT)/src/config.h \
1007 $(SRC)/mem-limits.h 1007 $(SRC)/mem-limits.h
1008 1008
1009$(BLD)/widget.obj : \ 1009$(BLD)/widget.obj : \
1010 $(SRC)/widget.c \ 1010 $(SRC)/widget.c \
1011 $(EMACS_ROOT)/src/s/ms-w32.h \ 1011 $(EMACS_ROOT)/src/s/ms-w32.h \
1012 $(EMACS_ROOT)/src/m/intel386.h \ 1012 $(EMACS_ROOT)/src/m/intel386.h \
1013 $(EMACS_ROOT)/src/config.h \ 1013 $(EMACS_ROOT)/src/config.h \
1014 $(SRC)/xterm.h \ 1014 $(SRC)/xterm.h \
1015 $(SRC)/frame.h \ 1015 $(SRC)/frame.h \
1016 $(SRC)/dispextern.h \ 1016 $(SRC)/dispextern.h \
1017 $(SRC)/widget.h \ 1017 $(SRC)/widget.h \
1018 $(SRC)/widgetprv.h 1018 $(SRC)/widgetprv.h
1019 1019
1020$(BLD)/window.obj : \ 1020$(BLD)/window.obj : \
1021 $(SRC)/window.c \ 1021 $(SRC)/window.c \
1022 $(EMACS_ROOT)/src/s/ms-w32.h \ 1022 $(EMACS_ROOT)/src/s/ms-w32.h \
1023 $(EMACS_ROOT)/src/m/intel386.h \ 1023 $(EMACS_ROOT)/src/m/intel386.h \
1024 $(EMACS_ROOT)/src/config.h \ 1024 $(EMACS_ROOT)/src/config.h \
1025 $(SRC)/buffer.h \ 1025 $(SRC)/buffer.h \
1026 $(SRC)/frame.h \ 1026 $(SRC)/frame.h \
1027 $(SRC)/window.h \ 1027 $(SRC)/window.h \
1028 $(SRC)/commands.h \ 1028 $(SRC)/commands.h \
1029 $(SRC)/indent.h \ 1029 $(SRC)/indent.h \
1030 $(SRC)/termchar.h \ 1030 $(SRC)/termchar.h \
1031 $(SRC)/disptab.h \ 1031 $(SRC)/disptab.h \
1032 $(SRC)/keyboard.h \ 1032 $(SRC)/keyboard.h \
1033 $(SRC)/composite.h 1033 $(SRC)/composite.h
1034 1034
1035$(BLD)/xdisp.obj : \ 1035$(BLD)/xdisp.obj : \
1036 $(SRC)/xdisp.c \ 1036 $(SRC)/xdisp.c \
1037 $(EMACS_ROOT)/src/s/ms-w32.h \ 1037 $(EMACS_ROOT)/src/s/ms-w32.h \
1038 $(EMACS_ROOT)/src/m/intel386.h \ 1038 $(EMACS_ROOT)/src/m/intel386.h \
1039 $(EMACS_ROOT)/src/config.h \ 1039 $(EMACS_ROOT)/src/config.h \
1040 $(SRC)/frame.h \ 1040 $(SRC)/frame.h \
1041 $(SRC)/window.h \ 1041 $(SRC)/window.h \
1042 $(SRC)/termchar.h \ 1042 $(SRC)/termchar.h \
1043 $(SRC)/buffer.h \ 1043 $(SRC)/buffer.h \
1044 $(SRC)/indent.h \ 1044 $(SRC)/indent.h \
1045 $(SRC)/commands.h \ 1045 $(SRC)/commands.h \
1046 $(SRC)/macros.h \ 1046 $(SRC)/macros.h \
1047 $(SRC)/disptab.h \ 1047 $(SRC)/disptab.h \
1048 $(SRC)/termhooks.h \ 1048 $(SRC)/termhooks.h \
1049 $(SRC)/dispextern.h \ 1049 $(SRC)/dispextern.h \
1050 $(SRC)/intervals.h \ 1050 $(SRC)/intervals.h \
1051 $(SRC)/composite.h 1051 $(SRC)/composite.h
1052 1052
1053$(BLD)/xfaces.obj: \ 1053$(BLD)/xfaces.obj: \
1054 $(EMACS_ROOT)/src/s/ms-w32.h \ 1054 $(EMACS_ROOT)/src/s/ms-w32.h \
1055 $(EMACS_ROOT)/src/m/intel386.h \ 1055 $(EMACS_ROOT)/src/m/intel386.h \
1056 $(EMACS_ROOT)/src/config.h \ 1056 $(EMACS_ROOT)/src/config.h \
1057 $(SRC)/xfaces.c \ 1057 $(SRC)/xfaces.c \
1058 $(SRC)/charset.h \ 1058 $(SRC)/charset.h \
1059 $(SRC)/fontset.h \ 1059 $(SRC)/fontset.h \
1060 $(SRC)/w32term.h \ 1060 $(SRC)/w32term.h \
1061 $(SRC)/w32gui.h \ 1061 $(SRC)/w32gui.h \
1062 $(SRC)/buffer.h \ 1062 $(SRC)/buffer.h \
1063 $(SRC)/dispextern.h \ 1063 $(SRC)/dispextern.h \
1064 $(SRC)/frame.h \ 1064 $(SRC)/frame.h \
1065 $(SRC)/blockinput.h \ 1065 $(SRC)/blockinput.h \
1066 $(SRC)/window.h \ 1066 $(SRC)/window.h \
1067 $(SRC)/intervals.h \ 1067 $(SRC)/intervals.h \
1068 $(SRC)/composite.h 1068 $(SRC)/composite.h
1069 1069
1070$(BLD)/w32fns.obj: \ 1070$(BLD)/w32fns.obj: \
1071 $(EMACS_ROOT)/src/s/ms-w32.h \ 1071 $(EMACS_ROOT)/src/s/ms-w32.h \
1072 $(EMACS_ROOT)/src/m/intel386.h \ 1072 $(EMACS_ROOT)/src/m/intel386.h \
1073 $(EMACS_ROOT)/src/config.h \ 1073 $(EMACS_ROOT)/src/config.h \
1074 $(SRC)/w32fns.c \ 1074 $(SRC)/w32fns.c \
1075 $(SRC)/x-list-font.c \ 1075 $(SRC)/x-list-font.c \
1076 $(SRC)/w32term.h \ 1076 $(SRC)/w32term.h \
1077 $(SRC)/w32gui.h \ 1077 $(SRC)/w32gui.h \
1078 $(SRC)/frame.h \ 1078 $(SRC)/frame.h \
1079 $(SRC)/window.h \ 1079 $(SRC)/window.h \
1080 $(SRC)/buffer.h \ 1080 $(SRC)/buffer.h \
1081 $(SRC)/charset.h \ 1081 $(SRC)/charset.h \
1082 $(SRC)/coding.h \ 1082 $(SRC)/coding.h \
1083 $(SRC)/dispextern.h \ 1083 $(SRC)/dispextern.h \
1084 $(SRC)/keyboard.h \ 1084 $(SRC)/keyboard.h \
1085 $(SRC)/blockinput.h \ 1085 $(SRC)/blockinput.h \
1086 $(SRC)/epaths.h \ 1086 $(SRC)/epaths.h \
1087 $(SRC)/w32heap.h \ 1087 $(SRC)/w32heap.h \
1088 $(SRC)/termhooks.h 1088 $(SRC)/termhooks.h
1089 1089
1090$(BLD)/w32menu.obj: \ 1090$(BLD)/w32menu.obj: \
1091 $(EMACS_ROOT)/src/s/ms-w32.h \ 1091 $(EMACS_ROOT)/src/s/ms-w32.h \
1092 $(EMACS_ROOT)/src/m/intel386.h \ 1092 $(EMACS_ROOT)/src/m/intel386.h \
1093 $(EMACS_ROOT)/src/config.h \ 1093 $(EMACS_ROOT)/src/config.h \
1094 $(SRC)/w32menu.c \ 1094 $(SRC)/w32menu.c \
1095 $(SRC)/termhooks.h \ 1095 $(SRC)/termhooks.h \
1096 $(SRC)/frame.h \ 1096 $(SRC)/frame.h \
1097 $(SRC)/window.h \ 1097 $(SRC)/window.h \
1098 $(SRC)/keyboard.h \ 1098 $(SRC)/keyboard.h \
1099 $(SRC)/blockinput.h \ 1099 $(SRC)/blockinput.h \
1100 $(SRC)/buffer.h \ 1100 $(SRC)/buffer.h \
1101 $(SRC)/charset.h \ 1101 $(SRC)/charset.h \
1102 $(SRC)/coding.h 1102 $(SRC)/coding.h
1103 1103
1104$(BLD)/w32term.obj: \ 1104$(BLD)/w32term.obj: \
1105 $(EMACS_ROOT)/src/s/ms-w32.h \ 1105 $(EMACS_ROOT)/src/s/ms-w32.h \
1106 $(EMACS_ROOT)/src/m/intel386.h \ 1106 $(EMACS_ROOT)/src/m/intel386.h \
1107 $(EMACS_ROOT)/src/config.h \ 1107 $(EMACS_ROOT)/src/config.h \
1108 $(SRC)/w32term.c \ 1108 $(SRC)/w32term.c \
1109 $(SRC)/blockinput.h \ 1109 $(SRC)/blockinput.h \
1110 $(SRC)/w32heap.h \ 1110 $(SRC)/w32heap.h \
1111 $(SRC)/w32term.h \ 1111 $(SRC)/w32term.h \
1112 $(SRC)/w32gui.h \ 1112 $(SRC)/w32gui.h \
1113 $(SRC)/systty.h \ 1113 $(SRC)/systty.h \
1114 $(SRC)/systime.h \ 1114 $(SRC)/systime.h \
1115 $(SRC)/frame.h \ 1115 $(SRC)/frame.h \
1116 $(SRC)/dispextern.h \ 1116 $(SRC)/dispextern.h \
1117 $(SRC)/termhooks.h \ 1117 $(SRC)/termhooks.h \
1118 $(SRC)/termopts.h \ 1118 $(SRC)/termopts.h \
1119 $(SRC)/termchar.h \ 1119 $(SRC)/termchar.h \
1120 $(SRC)/gnu.h \ 1120 $(SRC)/gnu.h \
1121 $(SRC)/disptab.h \ 1121 $(SRC)/disptab.h \
1122 $(SRC)/buffer.h \ 1122 $(SRC)/buffer.h \
1123 $(SRC)/window.h \ 1123 $(SRC)/window.h \
1124 $(SRC)/keyboard.h \ 1124 $(SRC)/keyboard.h \
1125 $(SRC)/intervals.h \ 1125 $(SRC)/intervals.h \
1126 $(SRC)/composite.h \ 1126 $(SRC)/composite.h \
1127 $(SRC)/atimer.h 1127 $(SRC)/atimer.h
1128 1128
1129$(BLD)/w32select.obj: \ 1129$(BLD)/w32select.obj: \
1130 $(EMACS_ROOT)/src/s/ms-w32.h \ 1130 $(EMACS_ROOT)/src/s/ms-w32.h \
1131 $(EMACS_ROOT)/src/m/intel386.h \ 1131 $(EMACS_ROOT)/src/m/intel386.h \
1132 $(EMACS_ROOT)/src/config.h \ 1132 $(EMACS_ROOT)/src/config.h \
1133 $(SRC)/w32select.c \ 1133 $(SRC)/w32select.c \
1134 $(SRC)/w32term.h \ 1134 $(SRC)/w32term.h \
1135 $(SRC)/w32gui.h \ 1135 $(SRC)/w32gui.h \
1136 $(SRC)/dispextern.h \ 1136 $(SRC)/dispextern.h \
1137 $(SRC)/frame.h \ 1137 $(SRC)/frame.h \
1138 $(SRC)/blockinput.h 1138 $(SRC)/blockinput.h
1139 1139
1140$(BLD)/w32reg.obj: \ 1140$(BLD)/w32reg.obj: \
1141 $(EMACS_ROOT)/src/s/ms-w32.h \ 1141 $(EMACS_ROOT)/src/s/ms-w32.h \
1142 $(EMACS_ROOT)/src/m/intel386.h \ 1142 $(EMACS_ROOT)/src/m/intel386.h \
1143 $(EMACS_ROOT)/src/config.h \ 1143 $(EMACS_ROOT)/src/config.h \
1144 $(SRC)/w32reg.c \ 1144 $(SRC)/w32reg.c \
1145 $(SRC)/w32term.h \ 1145 $(SRC)/w32term.h \
1146 $(SRC)/w32gui.h \ 1146 $(SRC)/w32gui.h \
1147 $(SRC)/blockinput.h 1147 $(SRC)/blockinput.h
1148 1148
1149$(BLD)/w32xfns.obj: \ 1149$(BLD)/w32xfns.obj: \
1150 $(EMACS_ROOT)/src/s/ms-w32.h \ 1150 $(EMACS_ROOT)/src/s/ms-w32.h \
1151 $(EMACS_ROOT)/src/m/intel386.h \ 1151 $(EMACS_ROOT)/src/m/intel386.h \
1152 $(EMACS_ROOT)/src/config.h \ 1152 $(EMACS_ROOT)/src/config.h \
1153 $(SRC)/w32xfns.c \ 1153 $(SRC)/w32xfns.c \
1154 1154
1155$(BLD)/w32bdf.obj: \ 1155$(BLD)/w32bdf.obj: \
1156 $(EMACS_ROOT)/src/s/ms-w32.h \ 1156 $(EMACS_ROOT)/src/s/ms-w32.h \
1157 $(EMACS_ROOT)/src/m/intel386.h \ 1157 $(EMACS_ROOT)/src/m/intel386.h \
1158 $(EMACS_ROOT)/src/config.h \ 1158 $(EMACS_ROOT)/src/config.h \
1159 $(SRC)/w32bdf.c \ 1159 $(SRC)/w32bdf.c \
1160 $(SRC)/charset.h \ 1160 $(SRC)/charset.h \
1161 $(SRC)/frame.h \ 1161 $(SRC)/frame.h \
1162 $(SRC)/dispextern.h \ 1162 $(SRC)/dispextern.h \
1163 $(SRC)/fontset.h \ 1163 $(SRC)/fontset.h \
1164 $(SRC)/blockinput.h \ 1164 $(SRC)/blockinput.h \
1165 $(SRC)/w32gui.h \ 1165 $(SRC)/w32gui.h \
1166 $(SRC)/w32term.h \ 1166 $(SRC)/w32term.h \
1167 $(SRC)/w32bdf.h \ 1167 $(SRC)/w32bdf.h \
1168 $(SRC)/w32.h \ 1168 $(SRC)/w32.h \
1169 $(SRC)/frame.h \ 1169 $(SRC)/frame.h \
1170 $(SRC)/blockinput.h 1170 $(SRC)/blockinput.h