Mercurial > emacs
annotate src/makefile.nt @ 11617:9eaeed5c8a40
(tex-view): Nice error if tex-dvi-view-command is nil.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 29 Apr 1995 16:32:03 +0000 |
parents | 354e54719416 |
children | c50ee074c31a |
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 | |
36 TLIB = $(BLD)\temacs.lib | |
37 TOBJ = $(BLD)\emacs.obj | |
38 | |
39 LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x1000000 -base:0xD00000 -debug:full -debugtype:cv -machine:$(ARCH) -subsystem:console -entry:_start | |
40 | |
41 # -debug:PARTIAL -debugtype:COFF | |
42 | |
43 # | |
44 # Split up the objects into two sets so that we don't run out of | |
45 # command line space when we link them into a library. | |
46 # | |
47 OBJ1 = $(BLD)\abbrev.obj \ | |
48 $(BLD)\alloc.obj \ | |
49 $(BLD)\alloca.obj \ | |
50 $(BLD)\buffer.obj \ | |
51 $(BLD)\bytecode.obj \ | |
52 $(BLD)\callint.obj \ | |
53 $(BLD)\callproc.obj \ | |
54 $(BLD)\casefiddle.obj \ | |
55 $(BLD)\cm.obj \ | |
56 $(BLD)\cmds.obj \ | |
57 $(BLD)\data.obj \ | |
58 $(BLD)\dired.obj \ | |
59 $(BLD)\dispnew.obj \ | |
60 $(BLD)\doc.obj \ | |
61 $(BLD)\doprnt.obj \ | |
62 $(BLD)\editfns.obj \ | |
63 $(BLD)\eval.obj \ | |
64 $(BLD)\fileio.obj \ | |
65 $(BLD)\filelock.obj \ | |
66 $(BLD)\filemode.obj \ | |
67 $(BLD)\fns.obj \ | |
68 $(BLD)\indent.obj \ | |
69 $(BLD)\insdel.obj \ | |
70 $(BLD)\keyboard.obj \ | |
71 $(BLD)\keymap.obj \ | |
72 $(BLD)\lastfile.obj \ | |
73 $(BLD)\lread.obj \ | |
74 $(BLD)\macros.obj \ | |
75 $(BLD)\marker.obj \ | |
76 $(BLD)\minibuf.obj \ | |
77 $(BLD)\xfaces.obj \ | |
78 $(BLD)\mocklisp.obj | |
79 | |
80 OBJ2 = $(BLD)\nt.obj \ | |
81 $(BLD)\ntheap.obj \ | |
82 $(BLD)\ntinevt.obj \ | |
83 $(BLD)\ntproc.obj \ | |
84 $(BLD)\ntterm.obj \ | |
85 $(BLD)\print.obj \ | |
86 $(BLD)\process.obj \ | |
87 $(BLD)\regex.obj \ | |
88 $(BLD)\scroll.obj \ | |
89 $(BLD)\search.obj \ | |
90 $(BLD)\syntax.obj \ | |
91 $(BLD)\sysdep.obj \ | |
92 $(BLD)\term.obj \ | |
93 $(BLD)\termcap.obj \ | |
94 $(BLD)\tparam.obj \ | |
95 $(BLD)\undo.obj \ | |
96 $(BLD)\unexnt.obj \ | |
97 $(BLD)\window.obj \ | |
98 $(BLD)\xdisp.obj \ | |
99 $(BLD)\casetab.obj \ | |
100 $(BLD)\floatfns.obj \ | |
101 $(BLD)\frame.obj \ | |
102 $(BLD)\gmalloc.obj \ | |
103 $(BLD)\intervals.obj \ | |
104 $(BLD)\ralloc.obj \ | |
105 $(BLD)\textprop.obj \ | |
11383 | 106 $(BLD)\vm-limit.obj \ |
107 $(BLD)\region-cache.obj \ | |
108 $(BLD)\strftime.obj | |
9803 | 109 |
110 LIBS = $(TLIB) \ | |
111 $(SYS_LIB_DIR)\setargv.obj \ | |
112 $(SYS_LIB_DIR)\kernel32.lib \ | |
113 $(SYS_LIB_DIR)\advapi32.lib \ | |
11383 | 114 $(SYS_LIB_DIR)\user32.lib \ |
115 $(SYS_LIB_DIR)\libc.lib \ | |
116 $(COMPAT_LIB) | |
9803 | 117 |
118 # | |
119 # Build the executable and dump it. | |
120 # | |
121 all: $(BLD) $(EMACS) | |
122 | |
123 # | |
124 # Headers we would preprocess if we could. | |
125 # | |
126 PREPARED_HEADERS = config.h paths.h | |
11383 | 127 config.h: ..\nt\config.h |
128 cp ..\nt\config.h config.h | |
129 paths.h: ..\nt\paths.h | |
130 cp ..\nt\paths.h paths.h | |
131 | |
132 # | |
133 # Make sure we have the DOC file in the right place. | |
134 # | |
135 DOC = obj\etc\DOC | |
136 $(DOC):; cd ..\lib-src | |
137 - del /q DOC | |
138 $(MAKE) -f makefile.nt all | |
139 cd ..\src | |
9803 | 140 |
141 # | |
142 # The dumped executable | |
143 # | |
144 emacs: $(EMACS) | |
11383 | 145 $(EMACS): $(PREPARED_HEADERS) $(DOC) $(TEMACS) |
9803 | 146 cd $(BLD) |
147 temacs.exe -batch -l loadup dump | |
148 cd ..\.. | |
149 | |
150 # | |
151 # The undumped executable | |
152 # | |
11383 | 153 temacs: $(TEMACS) |
154 $(TEMACS): $(BLD) $(TLIB) $(TOBJ) | |
9803 | 155 $(LINK) -out:$(TEMACS) $(LINK_FLAGS) $(TOBJ) $(LIBS) |
156 | |
157 # | |
158 # Build the library. Split up the build into two phases...otherwise we | |
159 # run out of command line space. | |
160 # | |
161 $(TLIB): $(OBJ1) $(OBJ2) | |
162 @- $(AR) -out:$(TLIB) $(OBJ1) | |
163 @- $(AR) -out:$(TLIB) $(TLIB) $(OBJ2) | |
164 | |
165 # | |
166 # Object files. | |
167 # | |
168 .c{$(BLD)}.obj: | |
169 $(CC) $(CFLAGS) -Fo$@ $< | |
170 | |
171 # | |
172 # Assuming INSTALL_DIR is defined, build and install emacs in it. | |
173 # | |
174 install: all | |
175 - mkdir $(INSTALL_DIR)\bin | |
176 $(CP) $(EMACS) $(INSTALL_DIR)\bin | |
177 | |
178 # | |
179 # Maintenance | |
180 # | |
181 clean:; - del /q *~ | |
11383 | 182 - $(DEL_TREE) deleted |
183 - $(DEL_TREE) obj | |
9803 | 184 |
185 # | |
186 # These files are the ones that compile conditionally on CANNOT_DUMP... | |
187 # this target is mostly used for debugging. | |
188 # | |
189 cleandump:; cd $(BLD) && - 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 | |
190 | |
191 | |
192 ### DEPENDENCIES ### | |
193 | |
194 EMACS_ROOT = .. | |
195 SRC = . | |
196 | |
197 $(BLD)\abbrev.obj : \ | |
198 $(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
|
199 $(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
|
200 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 201 $(EMACS_ROOT)\src\config.h \ |
202 $(SRC)\lisp.h \ | |
203 $(SRC)\commands.h \ | |
204 $(SRC)\buffer.h \ | |
205 $(SRC)\window.h | |
206 | |
207 $(BLD)\alloc.obj : \ | |
208 $(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
|
209 $(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
|
210 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 211 $(EMACS_ROOT)\src\config.h \ |
212 $(SRC)\lisp.h \ | |
213 $(SRC)\dispextern.h \ | |
214 $(SRC)\intervals.h \ | |
215 $(SRC)\puresize.h \ | |
216 $(SRC)\buffer.h \ | |
217 $(SRC)\window.h \ | |
218 $(SRC)\frame.h \ | |
219 $(SRC)\blockinput.h \ | |
220 $(SRC)\syssignal.h | |
221 | |
222 $(BLD)\alloca.obj : \ | |
223 $(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
|
224 $(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
|
225 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 226 $(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
|
227 $(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 $(SRC)\m\intel386.h \ |
9803 | 229 $(SRC)\config.h \ |
230 $(SRC)\blockinput.h | |
231 | |
232 $(BLD)\buffer.obj : \ | |
233 $(SRC)\buffer.c \ | |
234 $(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
|
235 $(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
|
236 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 237 $(EMACS_ROOT)\src\config.h \ |
238 $(SRC)\lisp.h \ | |
239 $(SRC)\dispextern.h \ | |
240 $(SRC)\intervals.h \ | |
241 $(SRC)\window.h \ | |
242 $(SRC)\commands.h \ | |
243 $(SRC)\buffer.h \ | |
244 $(SRC)\indent.h \ | |
245 $(SRC)\blockinput.h | |
246 | |
247 $(BLD)\bytecode.obj : \ | |
248 $(SRC)\bytecode.c \ | |
249 $(SRC)\lisp.h \ | |
250 $(SRC)\buffer.h \ | |
251 $(SRC)\syntax.h | |
252 | |
253 $(BLD)\callint.obj : \ | |
254 $(SRC)\callint.c \ | |
255 $(SRC)\lisp.h \ | |
256 $(SRC)\buffer.h \ | |
257 $(SRC)\commands.h \ | |
258 $(SRC)\keyboard.h \ | |
259 $(SRC)\window.h \ | |
260 $(SRC)\mocklisp.h | |
261 | |
262 $(BLD)\callproc.obj : \ | |
263 $(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
|
264 $(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
|
265 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 266 $(EMACS_ROOT)\src\config.h \ |
267 $(SRC)\msdos.h \ | |
268 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
269 $(SRC)\lisp.h \ | |
270 $(SRC)\commands.h \ | |
271 $(SRC)\buffer.h \ | |
272 $(SRC)\process.h \ | |
273 $(SRC)\syssignal.h \ | |
274 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
275 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
276 $(SRC)\systty.h | |
277 | |
278 $(BLD)\casefiddle.obj : \ | |
279 $(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
|
280 $(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
|
281 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 282 $(EMACS_ROOT)\src\config.h \ |
283 $(SRC)\lisp.h \ | |
284 $(SRC)\buffer.h \ | |
285 $(SRC)\commands.h \ | |
286 $(SRC)\syntax.h | |
287 $(CC) $(CFLAGS) -Fo$@ casefiddle.c | |
288 | |
289 $(BLD)\casetab.obj : \ | |
290 $(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
|
291 $(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
|
292 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 293 $(EMACS_ROOT)\src\config.h \ |
294 $(SRC)\lisp.h \ | |
295 $(SRC)\buffer.h | |
296 | |
297 $(BLD)\cm.obj : \ | |
298 $(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
|
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)\cm.h \ | |
303 $(SRC)\termhooks.h | |
304 | |
305 $(BLD)\cmds.obj : \ | |
306 $(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
|
307 $(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
|
308 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 309 $(EMACS_ROOT)\src\config.h \ |
310 $(SRC)\lisp.h \ | |
311 $(SRC)\commands.h \ | |
312 $(SRC)\buffer.h \ | |
313 $(SRC)\syntax.h | |
314 | |
315 $(BLD)\data.obj : \ | |
316 $(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
|
317 $(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
|
318 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 319 $(EMACS_ROOT)\src\config.h \ |
320 $(SRC)\lisp.h \ | |
321 $(SRC)\puresize.h \ | |
322 $(SRC)\buffer.h \ | |
323 $(SRC)\syssignal.h | |
324 | |
325 $(BLD)\dired.obj : \ | |
326 $(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
|
327 $(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
|
328 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 329 $(EMACS_ROOT)\src\config.h \ |
330 $(SRC)\vmsdir.h \ | |
331 $(SRC)\ndir.h \ | |
332 $(SRC)\lisp.h \ | |
333 $(SRC)\buffer.h \ | |
334 $(SRC)\commands.h \ | |
335 $(SRC)\regex.h | |
336 | |
337 $(BLD)\dispnew.obj : \ | |
338 $(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
|
339 $(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
|
340 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 341 $(EMACS_ROOT)\src\config.h \ |
342 $(SRC)\lisp.h \ | |
343 $(SRC)\termchar.h \ | |
344 $(SRC)\termopts.h \ | |
345 $(SRC)\termhooks.h \ | |
346 $(SRC)\cm.h \ | |
347 $(SRC)\buffer.h \ | |
348 $(SRC)\frame.h \ | |
349 $(SRC)\window.h \ | |
350 $(SRC)\commands.h \ | |
351 $(SRC)\disptab.h \ | |
352 $(SRC)\indent.h \ | |
353 $(SRC)\dispextern.h \ | |
354 $(SRC)\intervals.h \ | |
355 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
356 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
357 $(SRC)\systty.h \ | |
358 $(SRC)\xterm.h \ | |
359 $(SRC)\vmstime.h \ | |
360 $(SRC)\systime.h | |
361 | |
362 $(BLD)\doc.obj : \ | |
363 $(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
|
364 $(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
|
365 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 366 $(EMACS_ROOT)\src\config.h \ |
367 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
368 $(SRC)\lisp.h \ | |
369 $(SRC)\buffer.h \ | |
370 $(SRC)\keyboard.h | |
371 | |
372 $(BLD)\doprnt.obj : \ | |
373 $(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
|
374 $(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
|
375 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 376 $(EMACS_ROOT)\src\config.h |
377 | |
378 $(BLD)\dosfns.obj : \ | |
379 $(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
|
380 $(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
|
381 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 382 $(EMACS_ROOT)\src\config.h \ |
383 $(SRC)\lisp.h \ | |
384 $(SRC)\buffer.h \ | |
385 $(SRC)\termchar.h \ | |
386 $(SRC)\termhooks.h \ | |
387 $(SRC)\frame.h \ | |
388 $(SRC)\dosfns.h \ | |
389 $(SRC)\msdos.h | |
390 | |
391 $(BLD)\editfns.obj : \ | |
392 $(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
|
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 $(SRC)\uaf.h \ | |
397 $(SRC)\vms-pwd.h \ | |
398 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
399 $(SRC)\lisp.h \ | |
400 $(SRC)\dispextern.h \ | |
401 $(SRC)\intervals.h \ | |
402 $(SRC)\buffer.h \ | |
403 $(SRC)\window.h \ | |
404 $(SRC)\vmstime.h \ | |
405 $(SRC)\systime.h | |
406 | |
407 $(BLD)\emacs.obj : \ | |
408 $(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
|
409 $(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
|
410 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 411 $(EMACS_ROOT)\src\config.h \ |
412 $(SRC)\lisp.h \ | |
413 $(SRC)\commands.h \ | |
414 $(SRC)\dispextern.h \ | |
415 $(SRC)\intervals.h \ | |
416 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
417 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
418 $(SRC)\systty.h \ | |
419 $(SRC)\syssignal.h \ | |
420 $(SRC)\process.h | |
421 | |
422 $(BLD)\eval.obj : \ | |
423 $(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
|
424 $(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
|
425 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 426 $(EMACS_ROOT)\src\config.h \ |
427 $(SRC)\lisp.h \ | |
428 $(SRC)\blockinput.h \ | |
429 $(SRC)\commands.h \ | |
430 $(SRC)\keyboard.h | |
431 | |
432 $(BLD)\fileio.obj : \ | |
433 $(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
|
434 $(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
|
435 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 436 $(EMACS_ROOT)\src\config.h \ |
437 $(SRC)\uaf.h \ | |
438 $(SRC)\vms-pwd.h \ | |
439 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
440 $(SRC)\msdos.h \ | |
441 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
442 $(SRC)\vmsdir.h \ | |
443 $(SRC)\lisp.h \ | |
444 $(SRC)\dispextern.h \ | |
445 $(SRC)\intervals.h \ | |
446 $(SRC)\buffer.h \ | |
447 $(SRC)\window.h \ | |
448 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
449 $(SRC)\vmstime.h \ | |
450 $(SRC)\systime.h | |
451 | |
452 $(BLD)\filelock.obj : \ | |
453 $(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
|
454 $(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
|
455 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 456 $(EMACS_ROOT)\src\config.h \ |
457 $(SRC)\uaf.h \ | |
458 $(SRC)\vms-pwd.h \ | |
459 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
460 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
461 $(SRC)\lisp.h \ | |
462 $(EMACS_ROOT)\src\paths.h \ | |
463 $(SRC)\buffer.h \ | |
464 $(SRC)\vmsdir.h \ | |
465 $(SRC)\ndir.h | |
466 | |
467 $(BLD)\filemode.obj : \ | |
468 $(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
|
469 $(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
|
470 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 471 $(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
|
472 $(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
|
473 $(SRC)\m\intel386.h \ |
9803 | 474 $(SRC)\config.h |
475 | |
476 $(BLD)\floatfns.obj : \ | |
477 $(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
|
478 $(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
|
479 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 480 $(EMACS_ROOT)\src\config.h \ |
481 $(SRC)\lisp.h \ | |
482 $(SRC)\syssignal.h | |
483 | |
484 $(BLD)\fns.obj : \ | |
485 $(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
|
486 $(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
|
487 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 488 $(EMACS_ROOT)\src\config.h \ |
489 $(SRC)\lisp.h \ | |
490 $(SRC)\commands.h \ | |
491 $(SRC)\buffer.h \ | |
492 $(SRC)\keyboard.h \ | |
493 $(SRC)\dispextern.h \ | |
494 $(SRC)\intervals.h | |
495 | |
496 $(BLD)\frame.obj : \ | |
497 $(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
|
498 $(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
|
499 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 500 $(EMACS_ROOT)\src\config.h \ |
501 $(SRC)\lisp.h \ | |
502 $(SRC)\frame.h \ | |
503 $(SRC)\termhooks.h \ | |
504 $(SRC)\window.h \ | |
505 $(SRC)\buffer.h \ | |
506 $(SRC)\commands.h \ | |
507 $(SRC)\keyboard.h | |
508 | |
509 $(BLD)\getloadavg.obj : \ | |
510 $(SRC)\getloadavg.c \ | |
511 $(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
|
512 $(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
|
513 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 514 $(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
|
515 $(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
|
516 $(SRC)\m\intel386.h \ |
9803 | 517 $(SRC)\config.h \ |
518 $(EMACS_ROOT)\nt\inc\sys\file.h | |
519 | |
520 $(BLD)\gmalloc.obj : \ | |
521 $(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
|
522 $(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
|
523 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 524 $(EMACS_ROOT)\src\config.h \ |
525 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
526 $(SRC)\getpagesize.h | |
527 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c | |
528 | |
529 $(BLD)\hftctl.obj : \ | |
530 $(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
|
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 \ |
534 $(EMACS_ROOT)\nt\inc\sys\ioctl.h | |
535 | |
536 $(BLD)\indent.obj : \ | |
537 $(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
|
538 $(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
|
539 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 540 $(EMACS_ROOT)\src\config.h \ |
541 $(SRC)\lisp.h \ | |
542 $(SRC)\buffer.h \ | |
543 $(SRC)\indent.h \ | |
544 $(SRC)\frame.h \ | |
545 $(SRC)\window.h \ | |
546 $(SRC)\termchar.h \ | |
547 $(SRC)\termopts.h \ | |
548 $(SRC)\disptab.h \ | |
549 $(SRC)\dispextern.h \ | |
550 $(SRC)\intervals.h | |
551 | |
552 $(BLD)\insdel.obj : \ | |
553 $(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
|
554 $(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
|
555 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 556 $(EMACS_ROOT)\src\config.h \ |
557 $(SRC)\lisp.h \ | |
558 $(SRC)\dispextern.h \ | |
559 $(SRC)\intervals.h \ | |
560 $(SRC)\buffer.h \ | |
561 $(SRC)\window.h \ | |
562 $(SRC)\blockinput.h | |
563 | |
564 $(BLD)\intervals.obj : \ | |
565 $(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
|
566 $(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
|
567 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 568 $(EMACS_ROOT)\src\config.h \ |
569 $(SRC)\lisp.h \ | |
570 $(SRC)\dispextern.h \ | |
571 $(SRC)\intervals.h \ | |
572 $(SRC)\buffer.h \ | |
573 $(SRC)\puresize.h | |
574 $(CC) $(CFLAGS) -Fo$@ intervals.c | |
575 | |
576 $(BLD)\keyboard.obj : \ | |
577 $(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
|
578 $(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
|
579 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 580 $(EMACS_ROOT)\src\config.h \ |
581 $(SRC)\termchar.h \ | |
582 $(SRC)\termopts.h \ | |
583 $(SRC)\lisp.h \ | |
584 $(SRC)\termhooks.h \ | |
585 $(SRC)\macros.h \ | |
586 $(SRC)\frame.h \ | |
587 $(SRC)\window.h \ | |
588 $(SRC)\commands.h \ | |
589 $(SRC)\buffer.h \ | |
590 $(SRC)\disptab.h \ | |
591 $(SRC)\keyboard.h \ | |
592 $(SRC)\dispextern.h \ | |
593 $(SRC)\intervals.h \ | |
594 $(SRC)\blockinput.h \ | |
595 $(SRC)\msdos.h \ | |
596 $(SRC)\syssignal.h \ | |
597 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
598 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
599 $(SRC)\systty.h \ | |
600 $(SRC)\xterm.h \ | |
601 $(SRC)\vmstime.h \ | |
602 $(SRC)\systime.h | |
603 | |
604 $(BLD)\keymap.obj : \ | |
605 $(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
|
606 $(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
|
607 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 608 $(EMACS_ROOT)\src\config.h \ |
609 $(SRC)\lisp.h \ | |
610 $(SRC)\commands.h \ | |
611 $(SRC)\buffer.h \ | |
612 $(SRC)\keyboard.h \ | |
613 $(SRC)\termhooks.h \ | |
614 $(SRC)\blockinput.h | |
615 | |
616 $(BLD)\lastfile.obj : \ | |
617 $(SRC)\lastfile.c | |
618 | |
619 $(BLD)\lread.obj : \ | |
620 $(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
|
621 $(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
|
622 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 623 $(EMACS_ROOT)\src\config.h \ |
624 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
625 $(SRC)\lisp.h \ | |
626 $(SRC)\buffer.h \ | |
627 $(EMACS_ROOT)\src\paths.h \ | |
628 $(SRC)\commands.h \ | |
629 $(SRC)\keyboard.h \ | |
630 $(SRC)\termhooks.h \ | |
631 $(SRC)\msdos.h | |
632 | |
633 $(BLD)\macros.obj : \ | |
634 $(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
|
635 $(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
|
636 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 637 $(EMACS_ROOT)\src\config.h \ |
638 $(SRC)\lisp.h \ | |
639 $(SRC)\macros.h \ | |
640 $(SRC)\commands.h \ | |
641 $(SRC)\buffer.h \ | |
642 $(SRC)\window.h | |
643 | |
644 $(BLD)\marker.obj : \ | |
645 $(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
|
646 $(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
|
647 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 648 $(EMACS_ROOT)\src\config.h \ |
649 $(SRC)\lisp.h \ | |
650 $(SRC)\buffer.h | |
651 | |
652 $(BLD)\minibuf.obj : \ | |
653 $(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
|
654 $(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
|
655 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 656 $(EMACS_ROOT)\src\config.h \ |
657 $(SRC)\lisp.h \ | |
658 $(SRC)\commands.h \ | |
659 $(SRC)\buffer.h \ | |
660 $(SRC)\dispextern.h \ | |
661 $(SRC)\frame.h \ | |
662 $(SRC)\window.h \ | |
663 $(SRC)\syntax.h | |
664 | |
665 $(BLD)\mocklisp.obj : \ | |
666 $(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
|
667 $(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
|
668 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 669 $(EMACS_ROOT)\src\config.h \ |
670 $(SRC)\lisp.h \ | |
671 $(SRC)\buffer.h | |
672 | |
673 $(BLD)\nt.obj : \ | |
674 $(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
|
675 $(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
|
676 $(SRC)\m\intel386.h \ |
9803 | 677 $(SRC)\config.h \ |
678 $(SRC)\lisp.h \ | |
679 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
680 $(SRC)\ntheap.h | |
681 | |
682 $(BLD)\ntheap.obj : \ | |
683 $(SRC)\ntheap.c \ | |
684 $(SRC)\ntheap.h | |
685 | |
686 $(BLD)\ntinevt.obj : \ | |
687 $(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
|
688 $(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
|
689 $(SRC)\m\intel386.h \ |
9803 | 690 $(SRC)\config.h \ |
691 $(SRC)\lisp.h \ | |
692 $(SRC)\frame.h \ | |
693 $(SRC)\blockinput.h \ | |
694 $(SRC)\termhooks.h | |
695 | |
696 $(BLD)\ntproc.obj : \ | |
697 $(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
|
698 $(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
|
699 $(SRC)\m\intel386.h \ |
9803 | 700 $(SRC)\config.h \ |
701 $(SRC)\lisp.h \ | |
702 $(SRC)\nt.h \ | |
703 $(SRC)\vmstime.h \ | |
704 $(SRC)\systime.h | |
705 | |
706 $(BLD)\ntterm.obj : \ | |
707 $(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
|
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)\disptab.h \ | |
714 $(SRC)\termhooks.h \ | |
715 $(SRC)\ntinevt.h | |
716 | |
717 $(BLD)\prefix-args.obj : \ | |
718 $(SRC)\prefix-args.c | |
719 | |
720 $(BLD)\print.obj : \ | |
721 $(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
|
722 $(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
|
723 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 724 $(EMACS_ROOT)\src\config.h \ |
725 $(SRC)\lisp.h \ | |
726 $(SRC)\buffer.h \ | |
727 $(SRC)\frame.h \ | |
728 $(SRC)\window.h \ | |
729 $(SRC)\process.h \ | |
730 $(SRC)\termchar.h \ | |
731 $(SRC)\dispextern.h \ | |
732 $(SRC)\intervals.h | |
733 | |
734 $(BLD)\process.obj : \ | |
735 $(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
|
736 $(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
|
737 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 738 $(EMACS_ROOT)\src\config.h \ |
739 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
740 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
741 $(SRC)\systty.h \ | |
742 $(SRC)\window.h \ | |
743 $(SRC)\buffer.h \ | |
744 $(SRC)\process.h \ | |
745 $(SRC)\termhooks.h \ | |
746 $(SRC)\commands.h \ | |
747 $(SRC)\frame.h \ | |
748 $(SRC)\syssignal.h \ | |
749 $(SRC)\vmsproc.h \ | |
750 $(SRC)\syswait.h \ | |
751 $(SRC)\lisp.h \ | |
752 $(SRC)\vmstime.h \ | |
753 $(SRC)\systime.h \ | |
754 $(SRC)\termopts.h | |
755 | |
756 $(BLD)\ralloc.obj : \ | |
757 $(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
|
758 $(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
|
759 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 760 $(EMACS_ROOT)\src\config.h \ |
761 $(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
|
762 $(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
|
763 $(SRC)\m\intel386.h \ |
9803 | 764 $(SRC)\config.h \ |
765 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
766 $(SRC)\getpagesize.h | |
767 | |
768 $(BLD)\regex.obj : \ | |
769 $(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
|
770 $(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
|
771 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 772 $(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
|
773 $(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
|
774 $(SRC)\m\intel386.h \ |
9803 | 775 $(SRC)\config.h \ |
776 $(SRC)\lisp.h \ | |
777 $(SRC)\buffer.h \ | |
778 $(SRC)\syntax.h \ | |
779 $(SRC)\regex.h | |
780 | |
781 $(BLD)\scroll.obj : \ | |
782 $(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
|
783 $(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
|
784 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 785 $(EMACS_ROOT)\src\config.h \ |
786 $(SRC)\termchar.h \ | |
787 $(SRC)\lisp.h \ | |
788 $(SRC)\dispextern.h \ | |
789 $(SRC)\frame.h | |
790 | |
791 $(BLD)\search.obj : \ | |
792 $(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
|
793 $(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
|
794 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 795 $(EMACS_ROOT)\src\config.h \ |
796 $(SRC)\lisp.h \ | |
797 $(SRC)\syntax.h \ | |
798 $(SRC)\buffer.h \ | |
799 $(SRC)\commands.h \ | |
800 $(SRC)\blockinput.h \ | |
801 $(SRC)\regex.h | |
802 | |
803 $(BLD)\sunfns.obj : \ | |
804 $(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
|
805 $(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
|
806 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 807 $(EMACS_ROOT)\src\config.h \ |
808 $(SRC)\lisp.h \ | |
809 $(SRC)\window.h \ | |
810 $(SRC)\buffer.h \ | |
811 $(SRC)\termhooks.h | |
812 | |
813 $(BLD)\syntax.obj : \ | |
814 $(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
|
815 $(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
|
816 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 817 $(EMACS_ROOT)\src\config.h \ |
818 $(SRC)\lisp.h \ | |
819 $(SRC)\commands.h \ | |
820 $(SRC)\buffer.h \ | |
821 $(SRC)\syntax.h | |
822 | |
823 $(BLD)\sysdep.obj : \ | |
824 $(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
|
825 $(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
|
826 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 827 $(EMACS_ROOT)\src\config.h \ |
828 $(SRC)\lisp.h \ | |
829 $(SRC)\blockinput.h \ | |
830 $(SRC)\dosfns.h \ | |
831 $(SRC)\msdos.h \ | |
832 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
833 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
834 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
835 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
836 $(SRC)\systty.h \ | |
837 $(SRC)\vmsproc.h \ | |
838 $(SRC)\syswait.h \ | |
839 $(SRC)\frame.h \ | |
840 $(SRC)\window.h \ | |
841 $(SRC)\termhooks.h \ | |
842 $(SRC)\termchar.h \ | |
843 $(SRC)\termopts.h \ | |
844 $(SRC)\dispextern.h \ | |
845 $(SRC)\process.h \ | |
846 $(SRC)\vmsdir.h \ | |
847 $(SRC)\ndir.h \ | |
848 $(SRC)\syssignal.h \ | |
849 $(SRC)\vmstime.h \ | |
850 $(SRC)\systime.h \ | |
851 $(SRC)\uaf.h \ | |
852 $(SRC)\vms-pwd.h \ | |
853 $(EMACS_ROOT)\src\acldef.h \ | |
854 $(EMACS_ROOT)\src\chpdef.h | |
855 | |
856 $(BLD)\term.obj : \ | |
857 $(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
|
858 $(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
|
859 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 860 $(EMACS_ROOT)\src\config.h \ |
861 $(SRC)\termchar.h \ | |
862 $(SRC)\termopts.h \ | |
863 $(SRC)\cm.h \ | |
864 $(SRC)\lisp.h \ | |
865 $(SRC)\frame.h \ | |
866 $(SRC)\disptab.h \ | |
867 $(SRC)\termhooks.h \ | |
868 $(SRC)\keyboard.h | |
869 | |
870 $(BLD)\termcap.obj : \ | |
871 $(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
|
872 $(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
|
873 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 874 $(EMACS_ROOT)\src\config.h \ |
875 $(EMACS_ROOT)\nt\inc\sys\file.h | |
876 | |
877 $(BLD)\terminfo.obj : \ | |
878 $(SRC)\terminfo.c | |
879 | |
880 $(BLD)\textprop.obj : \ | |
881 $(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
|
882 $(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
|
883 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 884 $(EMACS_ROOT)\src\config.h \ |
885 $(SRC)\lisp.h \ | |
886 $(SRC)\dispextern.h \ | |
887 $(SRC)\intervals.h \ | |
888 $(SRC)\buffer.h \ | |
889 $(SRC)\window.h | |
890 | |
891 $(BLD)\tparam.obj : \ | |
892 $(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
|
893 $(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
|
894 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 895 $(EMACS_ROOT)\src\config.h |
896 | |
897 $(BLD)\undo.obj : \ | |
898 $(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
|
899 $(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
|
900 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 901 $(EMACS_ROOT)\src\config.h \ |
902 $(SRC)\lisp.h \ | |
903 $(SRC)\buffer.h \ | |
904 $(SRC)\commands.h | |
905 | |
906 $(BLD)\unexnt.obj : \ | |
907 $(SRC)\unexnt.c \ | |
908 $(SRC)\ntheap.h | |
909 | |
910 $(BLD)\widget.obj : \ | |
911 $(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
|
912 $(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
|
913 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 914 $(EMACS_ROOT)\src\config.h \ |
915 $(SRC)\lisp.h \ | |
916 $(SRC)\xterm.h \ | |
917 $(SRC)\frame.h \ | |
918 $(SRC)\dispextern.h \ | |
919 $(SRC)\widget.h \ | |
920 $(SRC)\widgetprv.h | |
921 | |
922 $(BLD)\window.obj : \ | |
923 $(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
|
924 $(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
|
925 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 926 $(EMACS_ROOT)\src\config.h \ |
927 $(SRC)\lisp.h \ | |
928 $(SRC)\buffer.h \ | |
929 $(SRC)\frame.h \ | |
930 $(SRC)\window.h \ | |
931 $(SRC)\commands.h \ | |
932 $(SRC)\indent.h \ | |
933 $(SRC)\termchar.h \ | |
934 $(SRC)\disptab.h \ | |
935 $(SRC)\keyboard.h | |
936 | |
937 $(BLD)\xdisp.obj : \ | |
938 $(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
|
939 $(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
|
940 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 941 $(EMACS_ROOT)\src\config.h \ |
942 $(SRC)\lisp.h \ | |
943 $(SRC)\frame.h \ | |
944 $(SRC)\window.h \ | |
945 $(SRC)\termchar.h \ | |
946 $(SRC)\buffer.h \ | |
947 $(SRC)\indent.h \ | |
948 $(SRC)\commands.h \ | |
949 $(SRC)\macros.h \ | |
950 $(SRC)\disptab.h \ | |
951 $(SRC)\termhooks.h \ | |
952 $(SRC)\dispextern.h \ | |
953 $(SRC)\intervals.h |