Mercurial > emacs
annotate src/makefile.nt @ 12253:5ff133dbb12f
(path-separator, grep-null-device, grep-regexp-alist):
Set them, as in winnt.el.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 16 Jun 1995 01:24:43 +0000 |
parents | 15c642f6c1a1 |
children | 8e4f8107dcd0 |
rev | line source |
---|---|
9803 | 1 # Makefile for GNU Emacs on Windows NT |
11383 | 2 # Copyright (c) 1992, 1993, 1994, 1995 Free Software Foundation, Inc. |
3 # Tim Fleehart (apollo@online.com) 17-Apr-92 | |
4 # Geoff Voelker (voelker@cs.washington.edu) 11-20-93 | |
9803 | 5 # |
6 # This file is part of GNU Emacs. | |
7 # | |
8 # GNU Emacs is free software; you can redistribute it and/or modify | |
9 # it under the terms of the GNU General Public License as published by | |
10 # the Free Software Foundation; either version 2, or (at your option) | |
11 # any later version. | |
12 # | |
13 # GNU Emacs is distributed in the hope that it will be useful, | |
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 # GNU General Public License for more details. | |
17 # | |
18 # You should have received a copy of the GNU General Public License | |
19 # along with GNU Emacs; see the file COPYING. If not, write to | |
20 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
21 # | |
22 | |
23 # | |
24 # Sets up the system dependent macros. | |
25 # | |
26 !include ..\nt\makefile.def | |
27 | |
28 # | |
29 # HAVE_CONFIG_H is required by some generic gnu sources stuck into | |
30 # the emacs source tree. | |
31 # | |
11383 | 32 LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I..\nt\inc |
9803 | 33 |
34 EMACS = $(BLD)\emacs.exe | |
35 TEMACS = $(BLD)\temacs.exe | |
11742 | 36 TLIB1 = $(BLD)\temacs1.lib |
37 TLIB2 = $(BLD)\temacs2.lib | |
9803 | 38 TOBJ = $(BLD)\emacs.obj |
12240
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
39 !if $(MSVCNT11) |
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
40 TRES = $(BLD)\emacs.res |
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
41 !else |
11742 | 42 TRES = $(BLD)\emacs.rbj |
12240
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
43 !endif |
9803 | 44 |
45 LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x1000000 -base:0xD00000 -debug:full -debugtype:cv -machine:$(ARCH) -subsystem:console -entry:_start | |
46 | |
47 # | |
48 # Split up the objects into two sets so that we don't run out of | |
49 # command line space when we link them into a library. | |
50 # | |
51 OBJ1 = $(BLD)\abbrev.obj \ | |
52 $(BLD)\alloc.obj \ | |
53 $(BLD)\alloca.obj \ | |
54 $(BLD)\buffer.obj \ | |
55 $(BLD)\bytecode.obj \ | |
56 $(BLD)\callint.obj \ | |
57 $(BLD)\callproc.obj \ | |
58 $(BLD)\casefiddle.obj \ | |
59 $(BLD)\cm.obj \ | |
60 $(BLD)\cmds.obj \ | |
61 $(BLD)\data.obj \ | |
62 $(BLD)\dired.obj \ | |
63 $(BLD)\dispnew.obj \ | |
64 $(BLD)\doc.obj \ | |
65 $(BLD)\doprnt.obj \ | |
66 $(BLD)\editfns.obj \ | |
67 $(BLD)\eval.obj \ | |
68 $(BLD)\fileio.obj \ | |
69 $(BLD)\filelock.obj \ | |
70 $(BLD)\filemode.obj \ | |
71 $(BLD)\fns.obj \ | |
72 $(BLD)\indent.obj \ | |
73 $(BLD)\insdel.obj \ | |
74 $(BLD)\keyboard.obj \ | |
75 $(BLD)\keymap.obj \ | |
76 $(BLD)\lastfile.obj \ | |
77 $(BLD)\lread.obj \ | |
78 $(BLD)\macros.obj \ | |
79 $(BLD)\marker.obj \ | |
80 $(BLD)\minibuf.obj \ | |
81 $(BLD)\mocklisp.obj | |
82 | |
83 OBJ2 = $(BLD)\nt.obj \ | |
84 $(BLD)\ntheap.obj \ | |
85 $(BLD)\ntinevt.obj \ | |
86 $(BLD)\ntproc.obj \ | |
87 $(BLD)\ntterm.obj \ | |
88 $(BLD)\print.obj \ | |
89 $(BLD)\process.obj \ | |
90 $(BLD)\regex.obj \ | |
91 $(BLD)\scroll.obj \ | |
92 $(BLD)\search.obj \ | |
93 $(BLD)\syntax.obj \ | |
94 $(BLD)\sysdep.obj \ | |
95 $(BLD)\term.obj \ | |
96 $(BLD)\termcap.obj \ | |
97 $(BLD)\tparam.obj \ | |
98 $(BLD)\undo.obj \ | |
99 $(BLD)\unexnt.obj \ | |
100 $(BLD)\window.obj \ | |
101 $(BLD)\xdisp.obj \ | |
102 $(BLD)\casetab.obj \ | |
103 $(BLD)\floatfns.obj \ | |
104 $(BLD)\frame.obj \ | |
105 $(BLD)\gmalloc.obj \ | |
106 $(BLD)\intervals.obj \ | |
107 $(BLD)\ralloc.obj \ | |
108 $(BLD)\textprop.obj \ | |
11383 | 109 $(BLD)\vm-limit.obj \ |
110 $(BLD)\region-cache.obj \ | |
111 $(BLD)\strftime.obj | |
9803 | 112 |
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
113 LIBS = $(TLIB1) \ |
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
114 $(TLIB2) \ |
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
115 $(BASE_LIBS) \ |
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
116 $(ADVAPI32) \ |
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
117 user32.lib |
9803 | 118 |
119 # | |
120 # Build the executable and dump it. | |
121 # | |
122 all: $(BLD) $(EMACS) | |
123 | |
124 # | |
125 # Headers we would preprocess if we could. | |
126 # | |
127 PREPARED_HEADERS = config.h paths.h | |
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
128 config.h: ..\nt\$(CONFIG_H) |
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
129 $(CP) $** $@ |
11383 | 130 paths.h: ..\nt\paths.h |
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
131 $(CP) $** $@ |
11383 | 132 |
133 # | |
134 # Make sure we have the DOC file in the right place. | |
135 # | |
11742 | 136 DOC = obj\etc\DOC-X |
11383 | 137 $(DOC):; cd ..\lib-src |
11742 | 138 - del /q DOC-X |
11383 | 139 $(MAKE) -f makefile.nt all |
140 cd ..\src | |
9803 | 141 |
142 # | |
143 # The dumped executable | |
144 # | |
145 emacs: $(EMACS) | |
11383 | 146 $(EMACS): $(PREPARED_HEADERS) $(DOC) $(TEMACS) |
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
147 !if "$(OS_TYPE)" == "win95" |
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
148 move $(BLD)\temacs.exe $(BLD)\emacs.exe |
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
149 !else |
9803 | 150 cd $(BLD) |
151 temacs.exe -batch -l loadup dump | |
152 cd ..\.. | |
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
153 !endif |
9803 | 154 |
155 # | |
156 # The undumped executable | |
157 # | |
12178
fc00a306b890
(TEMACS): Depend upon $(BLD).
Geoff Voelker <voelker@cs.washington.edu>
parents:
11940
diff
changeset
|
158 temacs: $(BLD) $(TEMACS) |
fc00a306b890
(TEMACS): Depend upon $(BLD).
Geoff Voelker <voelker@cs.washington.edu>
parents:
11940
diff
changeset
|
159 $(TEMACS): $(TLIB1) $(TLIB2) $(TOBJ) $(TRES) |
11742 | 160 $(LINK) -out:$(TEMACS) $(LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS) |
161 | |
162 # | |
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
163 # The resource file. NT 3.10 requires the use of cvtres; even though |
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
164 # it is not necessary on later versions, it is still ok to use it. |
11742 | 165 # |
166 $(TRES): ..\nt\emacs.rc | |
167 $(RC) -i..\nt -Fo$(BLD)\emacs.res $** | |
12240
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
168 !if !$(MSVCNT11) |
11742 | 169 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res |
12240
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
170 !endif |
9803 | 171 |
172 # | |
173 # Build the library. Split up the build into two phases...otherwise we | |
174 # run out of command line space. | |
175 # | |
11742 | 176 $(TLIB1): $(OBJ1) |
177 @- $(AR) -out:$@ $** | |
178 $(TLIB2): $(OBJ2) | |
179 @- $(AR) -out:$@ $** | |
9803 | 180 |
181 # | |
182 # Object files. | |
183 # | |
184 .c{$(BLD)}.obj: | |
185 $(CC) $(CFLAGS) -Fo$@ $< | |
186 | |
187 # | |
188 # Assuming INSTALL_DIR is defined, build and install emacs in it. | |
189 # | |
190 install: all | |
191 - mkdir $(INSTALL_DIR)\bin | |
192 $(CP) $(EMACS) $(INSTALL_DIR)\bin | |
193 | |
194 # | |
195 # Maintenance | |
196 # | |
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
197 clean:; - del /q *~ *.pdb config.h |
11383 | 198 - $(DEL_TREE) deleted |
199 - $(DEL_TREE) obj | |
9803 | 200 |
201 # | |
202 # These files are the ones that compile conditionally on CANNOT_DUMP... | |
203 # this target is mostly used for debugging. | |
204 # | |
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
205 cleandump:; cd $(BLD) |
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
206 - del callproc.obj data.obj dispnew.obj doc.obj editfns.obj emacs.obj lread.obj process.obj sysdep.obj term.obj ntheap.obj unexnt.obj |
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
207 cd ..\.. |
9803 | 208 |
209 | |
210 ### DEPENDENCIES ### | |
211 | |
212 EMACS_ROOT = .. | |
213 SRC = . | |
214 | |
215 $(BLD)\abbrev.obj : \ | |
216 $(SRC)\abbrev.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
217 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
218 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 219 $(EMACS_ROOT)\src\config.h \ |
220 $(SRC)\lisp.h \ | |
221 $(SRC)\commands.h \ | |
222 $(SRC)\buffer.h \ | |
223 $(SRC)\window.h | |
224 | |
225 $(BLD)\alloc.obj : \ | |
226 $(SRC)\alloc.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
227 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
228 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 229 $(EMACS_ROOT)\src\config.h \ |
230 $(SRC)\lisp.h \ | |
231 $(SRC)\dispextern.h \ | |
232 $(SRC)\intervals.h \ | |
233 $(SRC)\puresize.h \ | |
234 $(SRC)\buffer.h \ | |
235 $(SRC)\window.h \ | |
236 $(SRC)\frame.h \ | |
237 $(SRC)\blockinput.h \ | |
238 $(SRC)\syssignal.h | |
239 | |
240 $(BLD)\alloca.obj : \ | |
241 $(SRC)\alloca.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
242 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
243 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 244 $(EMACS_ROOT)\src\config.h \ |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
245 $(SRC)\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
246 $(SRC)\m\intel386.h \ |
9803 | 247 $(SRC)\config.h \ |
248 $(SRC)\blockinput.h | |
249 | |
250 $(BLD)\buffer.obj : \ | |
251 $(SRC)\buffer.c \ | |
252 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
253 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
254 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 255 $(EMACS_ROOT)\src\config.h \ |
256 $(SRC)\lisp.h \ | |
257 $(SRC)\dispextern.h \ | |
258 $(SRC)\intervals.h \ | |
259 $(SRC)\window.h \ | |
260 $(SRC)\commands.h \ | |
261 $(SRC)\buffer.h \ | |
262 $(SRC)\indent.h \ | |
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
263 $(SRC)\blockinput.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
264 $(SRC)\region-cache.h |
9803 | 265 |
266 $(BLD)\bytecode.obj : \ | |
267 $(SRC)\bytecode.c \ | |
268 $(SRC)\lisp.h \ | |
269 $(SRC)\buffer.h \ | |
270 $(SRC)\syntax.h | |
271 | |
272 $(BLD)\callint.obj : \ | |
273 $(SRC)\callint.c \ | |
274 $(SRC)\lisp.h \ | |
275 $(SRC)\buffer.h \ | |
276 $(SRC)\commands.h \ | |
277 $(SRC)\keyboard.h \ | |
278 $(SRC)\window.h \ | |
279 $(SRC)\mocklisp.h | |
280 | |
281 $(BLD)\callproc.obj : \ | |
282 $(SRC)\callproc.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
283 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
284 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 285 $(EMACS_ROOT)\src\config.h \ |
286 $(SRC)\msdos.h \ | |
287 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
288 $(SRC)\lisp.h \ | |
289 $(SRC)\commands.h \ | |
290 $(SRC)\buffer.h \ | |
291 $(SRC)\process.h \ | |
292 $(SRC)\syssignal.h \ | |
293 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
294 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
295 $(SRC)\systty.h | |
296 | |
297 $(BLD)\casefiddle.obj : \ | |
298 $(SRC)\casefiddle.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
299 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
300 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 301 $(EMACS_ROOT)\src\config.h \ |
302 $(SRC)\lisp.h \ | |
303 $(SRC)\buffer.h \ | |
304 $(SRC)\commands.h \ | |
305 $(SRC)\syntax.h | |
306 $(CC) $(CFLAGS) -Fo$@ casefiddle.c | |
307 | |
308 $(BLD)\casetab.obj : \ | |
309 $(SRC)\casetab.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
310 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
311 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 312 $(EMACS_ROOT)\src\config.h \ |
313 $(SRC)\lisp.h \ | |
314 $(SRC)\buffer.h | |
315 | |
316 $(BLD)\cm.obj : \ | |
317 $(SRC)\cm.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
318 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
319 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 320 $(EMACS_ROOT)\src\config.h \ |
321 $(SRC)\cm.h \ | |
322 $(SRC)\termhooks.h | |
323 | |
324 $(BLD)\cmds.obj : \ | |
325 $(SRC)\cmds.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
326 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
327 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 328 $(EMACS_ROOT)\src\config.h \ |
329 $(SRC)\lisp.h \ | |
330 $(SRC)\commands.h \ | |
331 $(SRC)\buffer.h \ | |
332 $(SRC)\syntax.h | |
333 | |
334 $(BLD)\data.obj : \ | |
335 $(SRC)\data.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
336 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
337 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 338 $(EMACS_ROOT)\src\config.h \ |
339 $(SRC)\lisp.h \ | |
340 $(SRC)\puresize.h \ | |
341 $(SRC)\buffer.h \ | |
342 $(SRC)\syssignal.h | |
343 | |
344 $(BLD)\dired.obj : \ | |
345 $(SRC)\dired.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
346 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
347 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 348 $(EMACS_ROOT)\src\config.h \ |
349 $(SRC)\vmsdir.h \ | |
350 $(SRC)\ndir.h \ | |
351 $(SRC)\lisp.h \ | |
352 $(SRC)\buffer.h \ | |
353 $(SRC)\commands.h \ | |
354 $(SRC)\regex.h | |
355 | |
356 $(BLD)\dispnew.obj : \ | |
357 $(SRC)\dispnew.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
358 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
359 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 360 $(EMACS_ROOT)\src\config.h \ |
361 $(SRC)\lisp.h \ | |
362 $(SRC)\termchar.h \ | |
363 $(SRC)\termopts.h \ | |
364 $(SRC)\termhooks.h \ | |
365 $(SRC)\cm.h \ | |
366 $(SRC)\buffer.h \ | |
367 $(SRC)\frame.h \ | |
368 $(SRC)\window.h \ | |
369 $(SRC)\commands.h \ | |
370 $(SRC)\disptab.h \ | |
371 $(SRC)\indent.h \ | |
372 $(SRC)\dispextern.h \ | |
373 $(SRC)\intervals.h \ | |
374 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
375 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
376 $(SRC)\systty.h \ | |
377 $(SRC)\xterm.h \ | |
378 $(SRC)\vmstime.h \ | |
379 $(SRC)\systime.h | |
380 | |
381 $(BLD)\doc.obj : \ | |
382 $(SRC)\doc.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
383 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
384 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 385 $(EMACS_ROOT)\src\config.h \ |
386 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
387 $(SRC)\lisp.h \ | |
388 $(SRC)\buffer.h \ | |
389 $(SRC)\keyboard.h | |
390 | |
391 $(BLD)\doprnt.obj : \ | |
392 $(SRC)\doprnt.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
393 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
394 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 395 $(EMACS_ROOT)\src\config.h |
396 | |
397 $(BLD)\dosfns.obj : \ | |
398 $(SRC)\dosfns.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
399 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
400 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 401 $(EMACS_ROOT)\src\config.h \ |
402 $(SRC)\lisp.h \ | |
403 $(SRC)\buffer.h \ | |
404 $(SRC)\termchar.h \ | |
405 $(SRC)\termhooks.h \ | |
406 $(SRC)\frame.h \ | |
407 $(SRC)\dosfns.h \ | |
408 $(SRC)\msdos.h | |
409 | |
410 $(BLD)\editfns.obj : \ | |
411 $(SRC)\editfns.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
412 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
413 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 414 $(EMACS_ROOT)\src\config.h \ |
415 $(SRC)\uaf.h \ | |
416 $(SRC)\vms-pwd.h \ | |
417 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
418 $(SRC)\lisp.h \ | |
419 $(SRC)\dispextern.h \ | |
420 $(SRC)\intervals.h \ | |
421 $(SRC)\buffer.h \ | |
422 $(SRC)\window.h \ | |
423 $(SRC)\vmstime.h \ | |
424 $(SRC)\systime.h | |
425 | |
426 $(BLD)\emacs.obj : \ | |
427 $(SRC)\emacs.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
428 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
429 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 430 $(EMACS_ROOT)\src\config.h \ |
431 $(SRC)\lisp.h \ | |
432 $(SRC)\commands.h \ | |
433 $(SRC)\dispextern.h \ | |
434 $(SRC)\intervals.h \ | |
435 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
436 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
437 $(SRC)\systty.h \ | |
438 $(SRC)\syssignal.h \ | |
439 $(SRC)\process.h | |
440 | |
441 $(BLD)\eval.obj : \ | |
442 $(SRC)\eval.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
443 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
444 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 445 $(EMACS_ROOT)\src\config.h \ |
446 $(SRC)\lisp.h \ | |
447 $(SRC)\blockinput.h \ | |
448 $(SRC)\commands.h \ | |
449 $(SRC)\keyboard.h | |
450 | |
451 $(BLD)\fileio.obj : \ | |
452 $(SRC)\fileio.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
453 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
454 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 455 $(EMACS_ROOT)\src\config.h \ |
456 $(SRC)\uaf.h \ | |
457 $(SRC)\vms-pwd.h \ | |
458 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
459 $(SRC)\msdos.h \ | |
460 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
461 $(SRC)\vmsdir.h \ | |
462 $(SRC)\lisp.h \ | |
463 $(SRC)\dispextern.h \ | |
464 $(SRC)\intervals.h \ | |
465 $(SRC)\buffer.h \ | |
466 $(SRC)\window.h \ | |
467 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
468 $(SRC)\vmstime.h \ | |
469 $(SRC)\systime.h | |
470 | |
471 $(BLD)\filelock.obj : \ | |
472 $(SRC)\filelock.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
473 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
474 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 475 $(EMACS_ROOT)\src\config.h \ |
476 $(SRC)\uaf.h \ | |
477 $(SRC)\vms-pwd.h \ | |
478 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
479 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
480 $(SRC)\lisp.h \ | |
481 $(EMACS_ROOT)\src\paths.h \ | |
482 $(SRC)\buffer.h \ | |
483 $(SRC)\vmsdir.h \ | |
484 $(SRC)\ndir.h | |
485 | |
486 $(BLD)\filemode.obj : \ | |
487 $(SRC)\filemode.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
488 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
489 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 490 $(EMACS_ROOT)\src\config.h \ |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
491 $(SRC)\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
492 $(SRC)\m\intel386.h \ |
9803 | 493 $(SRC)\config.h |
494 | |
495 $(BLD)\floatfns.obj : \ | |
496 $(SRC)\floatfns.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
497 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
498 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 499 $(EMACS_ROOT)\src\config.h \ |
500 $(SRC)\lisp.h \ | |
501 $(SRC)\syssignal.h | |
502 | |
503 $(BLD)\fns.obj : \ | |
504 $(SRC)\fns.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
505 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
506 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 507 $(EMACS_ROOT)\src\config.h \ |
508 $(SRC)\lisp.h \ | |
509 $(SRC)\commands.h \ | |
510 $(SRC)\buffer.h \ | |
511 $(SRC)\keyboard.h \ | |
512 $(SRC)\dispextern.h \ | |
513 $(SRC)\intervals.h | |
514 | |
515 $(BLD)\frame.obj : \ | |
516 $(SRC)\frame.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
517 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
518 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 519 $(EMACS_ROOT)\src\config.h \ |
520 $(SRC)\lisp.h \ | |
521 $(SRC)\frame.h \ | |
522 $(SRC)\termhooks.h \ | |
523 $(SRC)\window.h \ | |
524 $(SRC)\buffer.h \ | |
525 $(SRC)\commands.h \ | |
526 $(SRC)\keyboard.h | |
527 | |
528 $(BLD)\getloadavg.obj : \ | |
529 $(SRC)\getloadavg.c \ | |
530 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
531 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
532 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 533 $(EMACS_ROOT)\src\config.h \ |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
534 $(SRC)\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
535 $(SRC)\m\intel386.h \ |
9803 | 536 $(SRC)\config.h \ |
537 $(EMACS_ROOT)\nt\inc\sys\file.h | |
538 | |
539 $(BLD)\gmalloc.obj : \ | |
540 $(SRC)\gmalloc.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
541 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
542 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 543 $(EMACS_ROOT)\src\config.h \ |
544 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
545 $(SRC)\getpagesize.h | |
546 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c | |
547 | |
548 $(BLD)\hftctl.obj : \ | |
549 $(SRC)\hftctl.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
550 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
551 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 552 $(EMACS_ROOT)\src\config.h \ |
553 $(EMACS_ROOT)\nt\inc\sys\ioctl.h | |
554 | |
555 $(BLD)\indent.obj : \ | |
556 $(SRC)\indent.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
557 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
558 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 559 $(EMACS_ROOT)\src\config.h \ |
560 $(SRC)\lisp.h \ | |
561 $(SRC)\buffer.h \ | |
562 $(SRC)\indent.h \ | |
563 $(SRC)\frame.h \ | |
564 $(SRC)\window.h \ | |
565 $(SRC)\termchar.h \ | |
566 $(SRC)\termopts.h \ | |
567 $(SRC)\disptab.h \ | |
568 $(SRC)\dispextern.h \ | |
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
569 $(SRC)\intervals.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
570 $(SRC)\region-cache.h |
9803 | 571 |
572 $(BLD)\insdel.obj : \ | |
573 $(SRC)\insdel.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
574 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
575 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 576 $(EMACS_ROOT)\src\config.h \ |
577 $(SRC)\lisp.h \ | |
578 $(SRC)\dispextern.h \ | |
579 $(SRC)\intervals.h \ | |
580 $(SRC)\buffer.h \ | |
581 $(SRC)\window.h \ | |
582 $(SRC)\blockinput.h | |
583 | |
584 $(BLD)\intervals.obj : \ | |
585 $(SRC)\intervals.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
586 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
587 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 588 $(EMACS_ROOT)\src\config.h \ |
589 $(SRC)\lisp.h \ | |
590 $(SRC)\dispextern.h \ | |
591 $(SRC)\intervals.h \ | |
592 $(SRC)\buffer.h \ | |
593 $(SRC)\puresize.h | |
594 $(CC) $(CFLAGS) -Fo$@ intervals.c | |
595 | |
596 $(BLD)\keyboard.obj : \ | |
597 $(SRC)\keyboard.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
598 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
599 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 600 $(EMACS_ROOT)\src\config.h \ |
601 $(SRC)\termchar.h \ | |
602 $(SRC)\termopts.h \ | |
603 $(SRC)\lisp.h \ | |
604 $(SRC)\termhooks.h \ | |
605 $(SRC)\macros.h \ | |
606 $(SRC)\frame.h \ | |
607 $(SRC)\window.h \ | |
608 $(SRC)\commands.h \ | |
609 $(SRC)\buffer.h \ | |
610 $(SRC)\disptab.h \ | |
611 $(SRC)\keyboard.h \ | |
612 $(SRC)\dispextern.h \ | |
613 $(SRC)\intervals.h \ | |
614 $(SRC)\blockinput.h \ | |
615 $(SRC)\msdos.h \ | |
616 $(SRC)\syssignal.h \ | |
617 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
618 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
619 $(SRC)\systty.h \ | |
620 $(SRC)\xterm.h \ | |
621 $(SRC)\vmstime.h \ | |
622 $(SRC)\systime.h | |
623 | |
624 $(BLD)\keymap.obj : \ | |
625 $(SRC)\keymap.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
626 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
627 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 628 $(EMACS_ROOT)\src\config.h \ |
629 $(SRC)\lisp.h \ | |
630 $(SRC)\commands.h \ | |
631 $(SRC)\buffer.h \ | |
632 $(SRC)\keyboard.h \ | |
633 $(SRC)\termhooks.h \ | |
634 $(SRC)\blockinput.h | |
635 | |
636 $(BLD)\lastfile.obj : \ | |
637 $(SRC)\lastfile.c | |
638 | |
639 $(BLD)\lread.obj : \ | |
640 $(SRC)\lread.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
641 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
642 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 643 $(EMACS_ROOT)\src\config.h \ |
644 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
645 $(SRC)\lisp.h \ | |
646 $(SRC)\buffer.h \ | |
647 $(EMACS_ROOT)\src\paths.h \ | |
648 $(SRC)\commands.h \ | |
649 $(SRC)\keyboard.h \ | |
650 $(SRC)\termhooks.h \ | |
651 $(SRC)\msdos.h | |
652 | |
653 $(BLD)\macros.obj : \ | |
654 $(SRC)\macros.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
655 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
656 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 657 $(EMACS_ROOT)\src\config.h \ |
658 $(SRC)\lisp.h \ | |
659 $(SRC)\macros.h \ | |
660 $(SRC)\commands.h \ | |
661 $(SRC)\buffer.h \ | |
662 $(SRC)\window.h | |
663 | |
664 $(BLD)\marker.obj : \ | |
665 $(SRC)\marker.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
666 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
667 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 668 $(EMACS_ROOT)\src\config.h \ |
669 $(SRC)\lisp.h \ | |
670 $(SRC)\buffer.h | |
671 | |
672 $(BLD)\minibuf.obj : \ | |
673 $(SRC)\minibuf.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
674 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
675 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 676 $(EMACS_ROOT)\src\config.h \ |
677 $(SRC)\lisp.h \ | |
678 $(SRC)\commands.h \ | |
679 $(SRC)\buffer.h \ | |
680 $(SRC)\dispextern.h \ | |
681 $(SRC)\frame.h \ | |
682 $(SRC)\window.h \ | |
683 $(SRC)\syntax.h | |
684 | |
685 $(BLD)\mocklisp.obj : \ | |
686 $(SRC)\mocklisp.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
687 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
688 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 689 $(EMACS_ROOT)\src\config.h \ |
690 $(SRC)\lisp.h \ | |
691 $(SRC)\buffer.h | |
692 | |
693 $(BLD)\nt.obj : \ | |
694 $(SRC)\nt.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
695 $(SRC)\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
696 $(SRC)\m\intel386.h \ |
9803 | 697 $(SRC)\config.h \ |
698 $(SRC)\lisp.h \ | |
699 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
700 $(SRC)\ntheap.h | |
701 | |
702 $(BLD)\ntheap.obj : \ | |
703 $(SRC)\ntheap.c \ | |
704 $(SRC)\ntheap.h | |
705 | |
706 $(BLD)\ntinevt.obj : \ | |
707 $(SRC)\ntinevt.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
708 $(SRC)\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
709 $(SRC)\m\intel386.h \ |
9803 | 710 $(SRC)\config.h \ |
711 $(SRC)\lisp.h \ | |
712 $(SRC)\frame.h \ | |
713 $(SRC)\blockinput.h \ | |
714 $(SRC)\termhooks.h | |
715 | |
716 $(BLD)\ntproc.obj : \ | |
717 $(SRC)\ntproc.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
718 $(SRC)\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
719 $(SRC)\m\intel386.h \ |
9803 | 720 $(SRC)\config.h \ |
721 $(SRC)\lisp.h \ | |
722 $(SRC)\nt.h \ | |
723 $(SRC)\vmstime.h \ | |
724 $(SRC)\systime.h | |
725 | |
726 $(BLD)\ntterm.obj : \ | |
727 $(SRC)\ntterm.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
728 $(SRC)\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
729 $(SRC)\m\intel386.h \ |
9803 | 730 $(SRC)\config.h \ |
731 $(SRC)\lisp.h \ | |
732 $(SRC)\frame.h \ | |
733 $(SRC)\disptab.h \ | |
734 $(SRC)\termhooks.h \ | |
735 $(SRC)\ntinevt.h | |
736 | |
737 $(BLD)\prefix-args.obj : \ | |
738 $(SRC)\prefix-args.c | |
739 | |
740 $(BLD)\print.obj : \ | |
741 $(SRC)\print.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
742 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
743 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 744 $(EMACS_ROOT)\src\config.h \ |
745 $(SRC)\lisp.h \ | |
746 $(SRC)\buffer.h \ | |
747 $(SRC)\frame.h \ | |
748 $(SRC)\window.h \ | |
749 $(SRC)\process.h \ | |
750 $(SRC)\termchar.h \ | |
751 $(SRC)\dispextern.h \ | |
752 $(SRC)\intervals.h | |
753 | |
754 $(BLD)\process.obj : \ | |
755 $(SRC)\process.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
756 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
757 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 758 $(EMACS_ROOT)\src\config.h \ |
759 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
760 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
761 $(SRC)\systty.h \ | |
762 $(SRC)\window.h \ | |
763 $(SRC)\buffer.h \ | |
764 $(SRC)\process.h \ | |
765 $(SRC)\termhooks.h \ | |
766 $(SRC)\commands.h \ | |
767 $(SRC)\frame.h \ | |
768 $(SRC)\syssignal.h \ | |
769 $(SRC)\vmsproc.h \ | |
770 $(SRC)\syswait.h \ | |
771 $(SRC)\lisp.h \ | |
772 $(SRC)\vmstime.h \ | |
773 $(SRC)\systime.h \ | |
774 $(SRC)\termopts.h | |
775 | |
776 $(BLD)\ralloc.obj : \ | |
777 $(SRC)\ralloc.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
778 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
779 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 780 $(EMACS_ROOT)\src\config.h \ |
781 $(SRC)\lisp.h \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
782 $(SRC)\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
783 $(SRC)\m\intel386.h \ |
9803 | 784 $(SRC)\config.h \ |
785 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
786 $(SRC)\getpagesize.h | |
787 | |
788 $(BLD)\regex.obj : \ | |
789 $(SRC)\regex.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
790 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
791 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 792 $(EMACS_ROOT)\src\config.h \ |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
793 $(SRC)\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
794 $(SRC)\m\intel386.h \ |
9803 | 795 $(SRC)\config.h \ |
796 $(SRC)\lisp.h \ | |
797 $(SRC)\buffer.h \ | |
798 $(SRC)\syntax.h \ | |
799 $(SRC)\regex.h | |
800 | |
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
801 $(BLD)\region-cache.obj : \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
802 $(SRC)\region-cache.c \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
803 $(EMACS_ROOT)\src\s\windowsnt.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
804 $(EMACS_ROOT)\src\m\intel386.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
805 $(EMACS_ROOT)\src\config.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
806 $(SRC)\lisp.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
807 $(SRC)\buffer.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
808 $(SRC)\region-cache.h |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
809 |
9803 | 810 $(BLD)\scroll.obj : \ |
811 $(SRC)\scroll.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
812 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
813 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 814 $(EMACS_ROOT)\src\config.h \ |
815 $(SRC)\termchar.h \ | |
816 $(SRC)\lisp.h \ | |
817 $(SRC)\dispextern.h \ | |
818 $(SRC)\frame.h | |
819 | |
820 $(BLD)\search.obj : \ | |
821 $(SRC)\search.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
822 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
823 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 824 $(EMACS_ROOT)\src\config.h \ |
825 $(SRC)\lisp.h \ | |
826 $(SRC)\syntax.h \ | |
827 $(SRC)\buffer.h \ | |
828 $(SRC)\commands.h \ | |
829 $(SRC)\blockinput.h \ | |
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
830 $(SRC)\regex.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
831 $(SRC)\region-cache.h |
9803 | 832 |
11742 | 833 $(BLD)\strftime.obj : \ |
834 $(SRC)\strftime.c \ | |
835 $(EMACS_ROOT)\src\s\windowsnt.h \ | |
836 $(EMACS_ROOT)\src\m\intel386.h \ | |
837 $(EMACS_ROOT)\src\config.h | |
838 $(CC) $(CFLAGS) -Dstrftime=emacs_strftime -Fo$@ strftime.c | |
839 | |
9803 | 840 $(BLD)\sunfns.obj : \ |
841 $(SRC)\sunfns.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
842 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
843 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 844 $(EMACS_ROOT)\src\config.h \ |
845 $(SRC)\lisp.h \ | |
846 $(SRC)\window.h \ | |
847 $(SRC)\buffer.h \ | |
848 $(SRC)\termhooks.h | |
849 | |
850 $(BLD)\syntax.obj : \ | |
851 $(SRC)\syntax.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
852 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
853 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 854 $(EMACS_ROOT)\src\config.h \ |
855 $(SRC)\lisp.h \ | |
856 $(SRC)\commands.h \ | |
857 $(SRC)\buffer.h \ | |
858 $(SRC)\syntax.h | |
859 | |
860 $(BLD)\sysdep.obj : \ | |
861 $(SRC)\sysdep.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
862 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
863 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 864 $(EMACS_ROOT)\src\config.h \ |
865 $(SRC)\lisp.h \ | |
866 $(SRC)\blockinput.h \ | |
867 $(SRC)\dosfns.h \ | |
868 $(SRC)\msdos.h \ | |
869 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
870 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
871 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
872 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
873 $(SRC)\systty.h \ | |
874 $(SRC)\vmsproc.h \ | |
875 $(SRC)\syswait.h \ | |
876 $(SRC)\frame.h \ | |
877 $(SRC)\window.h \ | |
878 $(SRC)\termhooks.h \ | |
879 $(SRC)\termchar.h \ | |
880 $(SRC)\termopts.h \ | |
881 $(SRC)\dispextern.h \ | |
882 $(SRC)\process.h \ | |
883 $(SRC)\vmsdir.h \ | |
884 $(SRC)\ndir.h \ | |
885 $(SRC)\syssignal.h \ | |
886 $(SRC)\vmstime.h \ | |
887 $(SRC)\systime.h \ | |
888 $(SRC)\uaf.h \ | |
889 $(SRC)\vms-pwd.h \ | |
890 $(EMACS_ROOT)\src\acldef.h \ | |
891 $(EMACS_ROOT)\src\chpdef.h | |
892 | |
893 $(BLD)\term.obj : \ | |
894 $(SRC)\term.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
895 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
896 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 897 $(EMACS_ROOT)\src\config.h \ |
898 $(SRC)\termchar.h \ | |
899 $(SRC)\termopts.h \ | |
900 $(SRC)\cm.h \ | |
901 $(SRC)\lisp.h \ | |
902 $(SRC)\frame.h \ | |
903 $(SRC)\disptab.h \ | |
904 $(SRC)\termhooks.h \ | |
905 $(SRC)\keyboard.h | |
906 | |
907 $(BLD)\termcap.obj : \ | |
908 $(SRC)\termcap.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
909 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
910 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 911 $(EMACS_ROOT)\src\config.h \ |
912 $(EMACS_ROOT)\nt\inc\sys\file.h | |
913 | |
914 $(BLD)\terminfo.obj : \ | |
915 $(SRC)\terminfo.c | |
916 | |
917 $(BLD)\textprop.obj : \ | |
918 $(SRC)\textprop.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
919 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
920 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 921 $(EMACS_ROOT)\src\config.h \ |
922 $(SRC)\lisp.h \ | |
923 $(SRC)\dispextern.h \ | |
924 $(SRC)\intervals.h \ | |
925 $(SRC)\buffer.h \ | |
926 $(SRC)\window.h | |
927 | |
928 $(BLD)\tparam.obj : \ | |
929 $(SRC)\tparam.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
930 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
931 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 932 $(EMACS_ROOT)\src\config.h |
933 | |
934 $(BLD)\undo.obj : \ | |
935 $(SRC)\undo.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
936 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
937 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 938 $(EMACS_ROOT)\src\config.h \ |
939 $(SRC)\lisp.h \ | |
940 $(SRC)\buffer.h \ | |
941 $(SRC)\commands.h | |
942 | |
943 $(BLD)\unexnt.obj : \ | |
944 $(SRC)\unexnt.c \ | |
945 $(SRC)\ntheap.h | |
946 | |
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
947 $(BLD)\vm-limit.obj : \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
948 $(SRC)\vm-limit.c \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
949 $(EMACS_ROOT)\src\s\windowsnt.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
950 $(EMACS_ROOT)\src\m\intel386.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
951 $(EMACS_ROOT)\src\config.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
952 $(SRC)\mem-limits.h |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
953 |
9803 | 954 $(BLD)\widget.obj : \ |
955 $(SRC)\widget.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
956 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
957 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 958 $(EMACS_ROOT)\src\config.h \ |
959 $(SRC)\lisp.h \ | |
960 $(SRC)\xterm.h \ | |
961 $(SRC)\frame.h \ | |
962 $(SRC)\dispextern.h \ | |
963 $(SRC)\widget.h \ | |
964 $(SRC)\widgetprv.h | |
965 | |
966 $(BLD)\window.obj : \ | |
967 $(SRC)\window.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
968 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
969 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 970 $(EMACS_ROOT)\src\config.h \ |
971 $(SRC)\lisp.h \ | |
972 $(SRC)\buffer.h \ | |
973 $(SRC)\frame.h \ | |
974 $(SRC)\window.h \ | |
975 $(SRC)\commands.h \ | |
976 $(SRC)\indent.h \ | |
977 $(SRC)\termchar.h \ | |
978 $(SRC)\disptab.h \ | |
979 $(SRC)\keyboard.h | |
980 | |
981 $(BLD)\xdisp.obj : \ | |
982 $(SRC)\xdisp.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
983 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
984 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 985 $(EMACS_ROOT)\src\config.h \ |
986 $(SRC)\lisp.h \ | |
987 $(SRC)\frame.h \ | |
988 $(SRC)\window.h \ | |
989 $(SRC)\termchar.h \ | |
990 $(SRC)\buffer.h \ | |
991 $(SRC)\indent.h \ | |
992 $(SRC)\commands.h \ | |
993 $(SRC)\macros.h \ | |
994 $(SRC)\disptab.h \ | |
995 $(SRC)\termhooks.h \ | |
996 $(SRC)\dispextern.h \ | |
997 $(SRC)\intervals.h |