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