Mercurial > emacs
annotate src/makefile.nt @ 15409:feee0ea235db
(rmail-new-summary): Fix typo; (concat ": " description) should be eval'ed.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 12 Jun 1996 03:13:51 +0000 |
parents | 4ca30238fdf7 |
children | 6d54ca02c76d |
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 | |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
28 SUBSYSTEM=console |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
29 |
9803 | 30 # |
31 # HAVE_CONFIG_H is required by some generic gnu sources stuck into | |
32 # the emacs source tree. | |
33 # | |
11383 | 34 LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I..\nt\inc |
9803 | 35 |
36 EMACS = $(BLD)\emacs.exe | |
37 TEMACS = $(BLD)\temacs.exe | |
11742 | 38 TLIB1 = $(BLD)\temacs1.lib |
39 TLIB2 = $(BLD)\temacs2.lib | |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
40 !IFDEF NTGUI |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
41 TLIBW32 = $(BLD)\temacw32.lib |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
42 !ELSE |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
43 TLIBW32 = |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
44 !ENDIF |
9803 | 45 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
|
46 !if $(MSVCNT11) |
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
47 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
|
48 !else |
11742 | 49 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
|
50 !endif |
12453
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
51 TLASTLIB = $(BLD)\lastfile.lib |
9803 | 52 |
15140
f13ffba51542
(SUBSYSTEM) [NTGUI]: Remove conditional.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
53 # see comments in allocate_heap in ntheap.c before changing any of the |
f13ffba51542
(SUBSYSTEM) [NTGUI]: Remove conditional.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
54 # -stack, -heap, or -base settings. |
f13ffba51542
(SUBSYSTEM) [NTGUI]: Remove conditional.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
55 LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -debugtype:cv -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map |
9803 | 56 |
57 # | |
58 # Split up the objects into two sets so that we don't run out of | |
59 # command line space when we link them into a library. | |
60 # | |
61 OBJ1 = $(BLD)\abbrev.obj \ | |
62 $(BLD)\alloc.obj \ | |
63 $(BLD)\alloca.obj \ | |
64 $(BLD)\buffer.obj \ | |
65 $(BLD)\bytecode.obj \ | |
66 $(BLD)\callint.obj \ | |
67 $(BLD)\callproc.obj \ | |
68 $(BLD)\casefiddle.obj \ | |
69 $(BLD)\cm.obj \ | |
70 $(BLD)\cmds.obj \ | |
71 $(BLD)\data.obj \ | |
72 $(BLD)\dired.obj \ | |
73 $(BLD)\dispnew.obj \ | |
74 $(BLD)\doc.obj \ | |
75 $(BLD)\doprnt.obj \ | |
76 $(BLD)\editfns.obj \ | |
77 $(BLD)\eval.obj \ | |
78 $(BLD)\fileio.obj \ | |
79 $(BLD)\filelock.obj \ | |
80 $(BLD)\filemode.obj \ | |
81 $(BLD)\fns.obj \ | |
82 $(BLD)\indent.obj \ | |
83 $(BLD)\insdel.obj \ | |
84 $(BLD)\keyboard.obj \ | |
85 $(BLD)\keymap.obj \ | |
86 $(BLD)\lread.obj \ | |
87 $(BLD)\macros.obj \ | |
88 $(BLD)\marker.obj \ | |
89 $(BLD)\minibuf.obj \ | |
90 $(BLD)\mocklisp.obj | |
91 | |
92 OBJ2 = $(BLD)\nt.obj \ | |
93 $(BLD)\ntheap.obj \ | |
94 $(BLD)\ntinevt.obj \ | |
95 $(BLD)\ntproc.obj \ | |
96 $(BLD)\ntterm.obj \ | |
97 $(BLD)\print.obj \ | |
98 $(BLD)\process.obj \ | |
99 $(BLD)\regex.obj \ | |
100 $(BLD)\scroll.obj \ | |
101 $(BLD)\search.obj \ | |
102 $(BLD)\syntax.obj \ | |
103 $(BLD)\sysdep.obj \ | |
104 $(BLD)\term.obj \ | |
105 $(BLD)\termcap.obj \ | |
106 $(BLD)\tparam.obj \ | |
107 $(BLD)\undo.obj \ | |
108 $(BLD)\unexnt.obj \ | |
109 $(BLD)\window.obj \ | |
110 $(BLD)\xdisp.obj \ | |
111 $(BLD)\casetab.obj \ | |
112 $(BLD)\floatfns.obj \ | |
113 $(BLD)\frame.obj \ | |
114 $(BLD)\gmalloc.obj \ | |
115 $(BLD)\intervals.obj \ | |
116 $(BLD)\ralloc.obj \ | |
117 $(BLD)\textprop.obj \ | |
11383 | 118 $(BLD)\vm-limit.obj \ |
119 $(BLD)\region-cache.obj \ | |
120 $(BLD)\strftime.obj | |
9803 | 121 |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
122 WIN32OBJ = $(BLD)\w32term.obj \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
123 $(BLD)\w32xfns.obj \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
124 $(BLD)\w32fns.obj \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
125 $(BLD)\w32faces.obj \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
126 $(BLD)\w32select.obj \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
127 $(BLD)\w32menu.obj \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
128 $(BLD)\w32reg.obj |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
129 |
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
130 LIBS = $(TLIB1) \ |
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
131 $(TLIB2) \ |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
132 !IFDEF NTGUI |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
133 $(TLIBW32) \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
134 !ENDIF |
12453
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
135 $(TLASTLIB) \ |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
136 !IFDEF NTGUI |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
137 gdi32.lib \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
138 comdlg32.lib \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
139 !ENDIF |
15140
f13ffba51542
(SUBSYSTEM) [NTGUI]: Remove conditional.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
140 # libcmt.lib \ |
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
141 $(BASE_LIBS) \ |
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
142 $(ADVAPI32) \ |
14247
63cada85e5fd
(keyboard.obj, dispnew.obj): Depend upon w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13829
diff
changeset
|
143 user32.lib \ |
63cada85e5fd
(keyboard.obj, dispnew.obj): Depend upon w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13829
diff
changeset
|
144 mpr.lib |
9803 | 145 |
146 # | |
147 # Build the executable and dump it. | |
148 # | |
149 all: $(BLD) $(EMACS) | |
150 | |
151 # | |
152 # Headers we would preprocess if we could. | |
153 # | |
154 PREPARED_HEADERS = config.h paths.h | |
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
155 config.h: ..\nt\$(CONFIG_H) |
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
156 $(CP) $** $@ |
11383 | 157 paths.h: ..\nt\paths.h |
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
158 $(CP) $** $@ |
11383 | 159 |
160 # | |
161 # Make sure we have the DOC file in the right place. | |
162 # | |
11742 | 163 DOC = obj\etc\DOC-X |
11383 | 164 $(DOC):; cd ..\lib-src |
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
14247
diff
changeset
|
165 - $(DEL) DOC-X |
11383 | 166 $(MAKE) -f makefile.nt all |
167 cd ..\src | |
9803 | 168 |
169 # | |
170 # The dumped executable | |
171 # | |
172 emacs: $(EMACS) | |
11383 | 173 $(EMACS): $(PREPARED_HEADERS) $(DOC) $(TEMACS) |
9803 | 174 cd $(BLD) |
175 temacs.exe -batch -l loadup dump | |
176 cd ..\.. | |
177 | |
178 # | |
179 # The undumped executable | |
180 # | |
12178
fc00a306b890
(TEMACS): Depend upon $(BLD).
Geoff Voelker <voelker@cs.washington.edu>
parents:
11940
diff
changeset
|
181 temacs: $(BLD) $(TEMACS) |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
182 $(TEMACS): $(TLIB1) $(TLIB2) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) |
11742 | 183 $(LINK) -out:$(TEMACS) $(LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS) |
184 | |
185 # | |
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
186 # 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
|
187 # it is not necessary on later versions, it is still ok to use it. |
11742 | 188 # |
189 $(TRES): ..\nt\emacs.rc | |
190 $(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
|
191 !if !$(MSVCNT11) |
11742 | 192 $(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
|
193 !endif |
9803 | 194 |
195 # | |
196 # Build the library. Split up the build into two phases...otherwise we | |
197 # run out of command line space. | |
198 # | |
11742 | 199 $(TLIB1): $(OBJ1) |
200 @- $(AR) -out:$@ $** | |
201 $(TLIB2): $(OBJ2) | |
202 @- $(AR) -out:$@ $** | |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
203 !IFDEF NTGUI |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
204 $(TLIBW32): $(WIN32OBJ) |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
205 @- $(AR) -out:$@ $** |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
206 !ENDIF |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
207 |
12453
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
208 # |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
209 # Place lastfile.obj in its own library so that it can be loaded after |
12453
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
210 # the source libraries but before any system libraries. Doing so defines |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
211 # the end of Emacs' data section portably across compilers and systems. |
12453
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
212 # |
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
213 $(TLASTLIB): $(BLD)\lastfile.obj |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
214 @- $(AR) -out:$@ $** |
9803 | 215 |
216 # | |
217 # Object files. | |
218 # | |
219 .c{$(BLD)}.obj: | |
220 $(CC) $(CFLAGS) -Fo$@ $< | |
221 | |
222 # | |
223 # Assuming INSTALL_DIR is defined, build and install emacs in it. | |
224 # | |
225 install: all | |
226 - mkdir $(INSTALL_DIR)\bin | |
227 $(CP) $(EMACS) $(INSTALL_DIR)\bin | |
228 | |
229 # | |
230 # Maintenance | |
231 # | |
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
14247
diff
changeset
|
232 clean:; - $(DEL) *~ *.pdb config.h paths.h |
11383 | 233 - $(DEL_TREE) deleted |
234 - $(DEL_TREE) obj | |
9803 | 235 |
236 # | |
237 # These files are the ones that compile conditionally on CANNOT_DUMP... | |
238 # this target is mostly used for debugging. | |
239 # | |
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
240 cleandump:; cd $(BLD) |
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
14247
diff
changeset
|
241 - $(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 |
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
242 cd ..\.. |
9803 | 243 |
244 | |
245 ### DEPENDENCIES ### | |
246 | |
247 EMACS_ROOT = .. | |
248 SRC = . | |
249 | |
250 $(BLD)\abbrev.obj : \ | |
251 $(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
|
252 $(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
|
253 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 254 $(EMACS_ROOT)\src\config.h \ |
255 $(SRC)\lisp.h \ | |
256 $(SRC)\commands.h \ | |
257 $(SRC)\buffer.h \ | |
258 $(SRC)\window.h | |
259 | |
260 $(BLD)\alloc.obj : \ | |
261 $(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
|
262 $(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
|
263 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 264 $(EMACS_ROOT)\src\config.h \ |
265 $(SRC)\lisp.h \ | |
266 $(SRC)\dispextern.h \ | |
267 $(SRC)\intervals.h \ | |
268 $(SRC)\puresize.h \ | |
269 $(SRC)\buffer.h \ | |
270 $(SRC)\window.h \ | |
271 $(SRC)\frame.h \ | |
272 $(SRC)\blockinput.h \ | |
273 $(SRC)\syssignal.h | |
274 | |
275 $(BLD)\alloca.obj : \ | |
276 $(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
|
277 $(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
|
278 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 279 $(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
|
280 $(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 $(SRC)\m\intel386.h \ |
9803 | 282 $(SRC)\config.h \ |
283 $(SRC)\blockinput.h | |
284 | |
285 $(BLD)\buffer.obj : \ | |
286 $(SRC)\buffer.c \ | |
287 $(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
|
288 $(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
|
289 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 290 $(EMACS_ROOT)\src\config.h \ |
291 $(SRC)\lisp.h \ | |
292 $(SRC)\dispextern.h \ | |
293 $(SRC)\intervals.h \ | |
294 $(SRC)\window.h \ | |
295 $(SRC)\commands.h \ | |
296 $(SRC)\buffer.h \ | |
297 $(SRC)\indent.h \ | |
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
298 $(SRC)\blockinput.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
299 $(SRC)\region-cache.h |
9803 | 300 |
301 $(BLD)\bytecode.obj : \ | |
302 $(SRC)\bytecode.c \ | |
303 $(SRC)\lisp.h \ | |
304 $(SRC)\buffer.h \ | |
305 $(SRC)\syntax.h | |
306 | |
307 $(BLD)\callint.obj : \ | |
308 $(SRC)\callint.c \ | |
309 $(SRC)\lisp.h \ | |
310 $(SRC)\buffer.h \ | |
311 $(SRC)\commands.h \ | |
312 $(SRC)\keyboard.h \ | |
313 $(SRC)\window.h \ | |
314 $(SRC)\mocklisp.h | |
315 | |
316 $(BLD)\callproc.obj : \ | |
317 $(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
|
318 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
319 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 320 $(EMACS_ROOT)\src\config.h \ |
321 $(SRC)\msdos.h \ | |
322 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
323 $(SRC)\lisp.h \ | |
324 $(SRC)\commands.h \ | |
325 $(SRC)\buffer.h \ | |
326 $(SRC)\process.h \ | |
327 $(SRC)\syssignal.h \ | |
328 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
329 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
330 $(SRC)\systty.h | |
331 | |
332 $(BLD)\casefiddle.obj : \ | |
333 $(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
|
334 $(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
|
335 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 336 $(EMACS_ROOT)\src\config.h \ |
337 $(SRC)\lisp.h \ | |
338 $(SRC)\buffer.h \ | |
339 $(SRC)\commands.h \ | |
340 $(SRC)\syntax.h | |
341 $(CC) $(CFLAGS) -Fo$@ casefiddle.c | |
342 | |
343 $(BLD)\casetab.obj : \ | |
344 $(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
|
345 $(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
|
346 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 347 $(EMACS_ROOT)\src\config.h \ |
348 $(SRC)\lisp.h \ | |
349 $(SRC)\buffer.h | |
350 | |
351 $(BLD)\cm.obj : \ | |
352 $(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
|
353 $(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
|
354 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 355 $(EMACS_ROOT)\src\config.h \ |
356 $(SRC)\cm.h \ | |
357 $(SRC)\termhooks.h | |
358 | |
359 $(BLD)\cmds.obj : \ | |
360 $(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
|
361 $(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
|
362 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 363 $(EMACS_ROOT)\src\config.h \ |
364 $(SRC)\lisp.h \ | |
365 $(SRC)\commands.h \ | |
366 $(SRC)\buffer.h \ | |
367 $(SRC)\syntax.h | |
368 | |
369 $(BLD)\data.obj : \ | |
370 $(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
|
371 $(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
|
372 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 373 $(EMACS_ROOT)\src\config.h \ |
374 $(SRC)\lisp.h \ | |
375 $(SRC)\puresize.h \ | |
376 $(SRC)\buffer.h \ | |
377 $(SRC)\syssignal.h | |
378 | |
379 $(BLD)\dired.obj : \ | |
380 $(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
|
381 $(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
|
382 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 383 $(EMACS_ROOT)\src\config.h \ |
384 $(SRC)\vmsdir.h \ | |
385 $(SRC)\ndir.h \ | |
386 $(SRC)\lisp.h \ | |
387 $(SRC)\buffer.h \ | |
388 $(SRC)\commands.h \ | |
389 $(SRC)\regex.h | |
390 | |
391 $(BLD)\dispnew.obj : \ | |
392 $(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
|
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)\lisp.h \ | |
397 $(SRC)\termchar.h \ | |
398 $(SRC)\termopts.h \ | |
399 $(SRC)\termhooks.h \ | |
400 $(SRC)\cm.h \ | |
401 $(SRC)\buffer.h \ | |
402 $(SRC)\frame.h \ | |
403 $(SRC)\window.h \ | |
404 $(SRC)\commands.h \ | |
405 $(SRC)\disptab.h \ | |
406 $(SRC)\indent.h \ | |
407 $(SRC)\dispextern.h \ | |
408 $(SRC)\intervals.h \ | |
409 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
410 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
411 $(SRC)\systty.h \ | |
14247
63cada85e5fd
(keyboard.obj, dispnew.obj): Depend upon w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13829
diff
changeset
|
412 $(SRC)\w32term.h \ |
9803 | 413 $(SRC)\xterm.h \ |
414 $(SRC)\vmstime.h \ | |
415 $(SRC)\systime.h | |
416 | |
417 $(BLD)\doc.obj : \ | |
418 $(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
|
419 $(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
|
420 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 421 $(EMACS_ROOT)\src\config.h \ |
422 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
423 $(SRC)\lisp.h \ | |
424 $(SRC)\buffer.h \ | |
425 $(SRC)\keyboard.h | |
426 | |
427 $(BLD)\doprnt.obj : \ | |
428 $(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
|
429 $(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
|
430 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 431 $(EMACS_ROOT)\src\config.h |
432 | |
433 $(BLD)\dosfns.obj : \ | |
434 $(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
|
435 $(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
|
436 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 437 $(EMACS_ROOT)\src\config.h \ |
438 $(SRC)\lisp.h \ | |
439 $(SRC)\buffer.h \ | |
440 $(SRC)\termchar.h \ | |
441 $(SRC)\termhooks.h \ | |
442 $(SRC)\frame.h \ | |
443 $(SRC)\dosfns.h \ | |
444 $(SRC)\msdos.h | |
445 | |
446 $(BLD)\editfns.obj : \ | |
447 $(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
|
448 $(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
|
449 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 450 $(EMACS_ROOT)\src\config.h \ |
451 $(SRC)\uaf.h \ | |
452 $(SRC)\vms-pwd.h \ | |
453 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
454 $(SRC)\lisp.h \ | |
455 $(SRC)\dispextern.h \ | |
456 $(SRC)\intervals.h \ | |
457 $(SRC)\buffer.h \ | |
458 $(SRC)\window.h \ | |
459 $(SRC)\vmstime.h \ | |
460 $(SRC)\systime.h | |
461 | |
462 $(BLD)\emacs.obj : \ | |
463 $(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
|
464 $(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
|
465 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 466 $(EMACS_ROOT)\src\config.h \ |
467 $(SRC)\lisp.h \ | |
468 $(SRC)\commands.h \ | |
469 $(SRC)\dispextern.h \ | |
470 $(SRC)\intervals.h \ | |
471 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
472 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
473 $(SRC)\systty.h \ | |
474 $(SRC)\syssignal.h \ | |
475 $(SRC)\process.h | |
476 | |
477 $(BLD)\eval.obj : \ | |
478 $(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
|
479 $(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
|
480 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 481 $(EMACS_ROOT)\src\config.h \ |
482 $(SRC)\lisp.h \ | |
483 $(SRC)\blockinput.h \ | |
484 $(SRC)\commands.h \ | |
485 $(SRC)\keyboard.h | |
486 | |
487 $(BLD)\fileio.obj : \ | |
488 $(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
|
489 $(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
|
490 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 491 $(EMACS_ROOT)\src\config.h \ |
492 $(SRC)\uaf.h \ | |
493 $(SRC)\vms-pwd.h \ | |
494 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
495 $(SRC)\msdos.h \ | |
496 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
497 $(SRC)\vmsdir.h \ | |
498 $(SRC)\lisp.h \ | |
499 $(SRC)\dispextern.h \ | |
500 $(SRC)\intervals.h \ | |
501 $(SRC)\buffer.h \ | |
502 $(SRC)\window.h \ | |
503 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
504 $(SRC)\vmstime.h \ | |
505 $(SRC)\systime.h | |
506 | |
507 $(BLD)\filelock.obj : \ | |
508 $(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
|
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)\uaf.h \ | |
513 $(SRC)\vms-pwd.h \ | |
514 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
515 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
516 $(SRC)\lisp.h \ | |
517 $(EMACS_ROOT)\src\paths.h \ | |
518 $(SRC)\buffer.h \ | |
519 $(SRC)\vmsdir.h \ | |
520 $(SRC)\ndir.h | |
521 | |
522 $(BLD)\filemode.obj : \ | |
523 $(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
|
524 $(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
|
525 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 526 $(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
|
527 $(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
|
528 $(SRC)\m\intel386.h \ |
9803 | 529 $(SRC)\config.h |
530 | |
531 $(BLD)\floatfns.obj : \ | |
532 $(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
|
533 $(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
|
534 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 535 $(EMACS_ROOT)\src\config.h \ |
536 $(SRC)\lisp.h \ | |
537 $(SRC)\syssignal.h | |
538 | |
539 $(BLD)\fns.obj : \ | |
540 $(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
|
541 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
542 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 543 $(EMACS_ROOT)\src\config.h \ |
544 $(SRC)\lisp.h \ | |
545 $(SRC)\commands.h \ | |
546 $(SRC)\buffer.h \ | |
547 $(SRC)\keyboard.h \ | |
548 $(SRC)\dispextern.h \ | |
549 $(SRC)\intervals.h | |
550 | |
551 $(BLD)\frame.obj : \ | |
552 $(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
|
553 $(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
|
554 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 555 $(EMACS_ROOT)\src\config.h \ |
556 $(SRC)\lisp.h \ | |
557 $(SRC)\frame.h \ | |
558 $(SRC)\termhooks.h \ | |
559 $(SRC)\window.h \ | |
560 $(SRC)\buffer.h \ | |
561 $(SRC)\commands.h \ | |
562 $(SRC)\keyboard.h | |
563 | |
564 $(BLD)\getloadavg.obj : \ | |
565 $(SRC)\getloadavg.c \ | |
566 $(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
|
567 $(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
|
568 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 569 $(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
|
570 $(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
|
571 $(SRC)\m\intel386.h \ |
9803 | 572 $(SRC)\config.h \ |
573 $(EMACS_ROOT)\nt\inc\sys\file.h | |
574 | |
575 $(BLD)\gmalloc.obj : \ | |
576 $(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
|
577 $(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
|
578 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 579 $(EMACS_ROOT)\src\config.h \ |
580 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
581 $(SRC)\getpagesize.h | |
582 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c | |
583 | |
584 $(BLD)\hftctl.obj : \ | |
585 $(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
|
586 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
587 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 588 $(EMACS_ROOT)\src\config.h \ |
589 $(EMACS_ROOT)\nt\inc\sys\ioctl.h | |
590 | |
591 $(BLD)\indent.obj : \ | |
592 $(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
|
593 $(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
|
594 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 595 $(EMACS_ROOT)\src\config.h \ |
596 $(SRC)\lisp.h \ | |
597 $(SRC)\buffer.h \ | |
598 $(SRC)\indent.h \ | |
599 $(SRC)\frame.h \ | |
600 $(SRC)\window.h \ | |
601 $(SRC)\termchar.h \ | |
602 $(SRC)\termopts.h \ | |
603 $(SRC)\disptab.h \ | |
604 $(SRC)\dispextern.h \ | |
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
605 $(SRC)\intervals.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
606 $(SRC)\region-cache.h |
9803 | 607 |
608 $(BLD)\insdel.obj : \ | |
609 $(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
|
610 $(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
|
611 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 612 $(EMACS_ROOT)\src\config.h \ |
613 $(SRC)\lisp.h \ | |
614 $(SRC)\dispextern.h \ | |
615 $(SRC)\intervals.h \ | |
616 $(SRC)\buffer.h \ | |
617 $(SRC)\window.h \ | |
618 $(SRC)\blockinput.h | |
619 | |
620 $(BLD)\intervals.obj : \ | |
621 $(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
|
622 $(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
|
623 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 624 $(EMACS_ROOT)\src\config.h \ |
625 $(SRC)\lisp.h \ | |
626 $(SRC)\dispextern.h \ | |
627 $(SRC)\intervals.h \ | |
628 $(SRC)\buffer.h \ | |
629 $(SRC)\puresize.h | |
630 $(CC) $(CFLAGS) -Fo$@ intervals.c | |
631 | |
632 $(BLD)\keyboard.obj : \ | |
633 $(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
|
634 $(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
|
635 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 636 $(EMACS_ROOT)\src\config.h \ |
637 $(SRC)\termchar.h \ | |
638 $(SRC)\termopts.h \ | |
639 $(SRC)\lisp.h \ | |
640 $(SRC)\termhooks.h \ | |
641 $(SRC)\macros.h \ | |
642 $(SRC)\frame.h \ | |
643 $(SRC)\window.h \ | |
644 $(SRC)\commands.h \ | |
645 $(SRC)\buffer.h \ | |
646 $(SRC)\disptab.h \ | |
647 $(SRC)\keyboard.h \ | |
648 $(SRC)\dispextern.h \ | |
649 $(SRC)\intervals.h \ | |
650 $(SRC)\blockinput.h \ | |
651 $(SRC)\msdos.h \ | |
652 $(SRC)\syssignal.h \ | |
653 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
654 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
655 $(SRC)\systty.h \ | |
14247
63cada85e5fd
(keyboard.obj, dispnew.obj): Depend upon w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13829
diff
changeset
|
656 $(SRC)\w32term.h \ |
9803 | 657 $(SRC)\xterm.h \ |
658 $(SRC)\vmstime.h \ | |
659 $(SRC)\systime.h | |
660 | |
661 $(BLD)\keymap.obj : \ | |
662 $(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
|
663 $(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
|
664 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 665 $(EMACS_ROOT)\src\config.h \ |
666 $(SRC)\lisp.h \ | |
667 $(SRC)\commands.h \ | |
668 $(SRC)\buffer.h \ | |
669 $(SRC)\keyboard.h \ | |
670 $(SRC)\termhooks.h \ | |
671 $(SRC)\blockinput.h | |
672 | |
673 $(BLD)\lastfile.obj : \ | |
674 $(SRC)\lastfile.c | |
675 | |
676 $(BLD)\lread.obj : \ | |
677 $(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
|
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 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
682 $(SRC)\lisp.h \ | |
683 $(SRC)\buffer.h \ | |
684 $(EMACS_ROOT)\src\paths.h \ | |
685 $(SRC)\commands.h \ | |
686 $(SRC)\keyboard.h \ | |
687 $(SRC)\termhooks.h \ | |
688 $(SRC)\msdos.h | |
689 | |
690 $(BLD)\macros.obj : \ | |
691 $(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
|
692 $(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
|
693 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 694 $(EMACS_ROOT)\src\config.h \ |
695 $(SRC)\lisp.h \ | |
696 $(SRC)\macros.h \ | |
697 $(SRC)\commands.h \ | |
698 $(SRC)\buffer.h \ | |
699 $(SRC)\window.h | |
700 | |
701 $(BLD)\marker.obj : \ | |
702 $(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
|
703 $(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
|
704 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 705 $(EMACS_ROOT)\src\config.h \ |
706 $(SRC)\lisp.h \ | |
707 $(SRC)\buffer.h | |
708 | |
709 $(BLD)\minibuf.obj : \ | |
710 $(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
|
711 $(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
|
712 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 713 $(EMACS_ROOT)\src\config.h \ |
714 $(SRC)\lisp.h \ | |
715 $(SRC)\commands.h \ | |
716 $(SRC)\buffer.h \ | |
717 $(SRC)\dispextern.h \ | |
718 $(SRC)\frame.h \ | |
719 $(SRC)\window.h \ | |
720 $(SRC)\syntax.h | |
721 | |
722 $(BLD)\mocklisp.obj : \ | |
723 $(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
|
724 $(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
|
725 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 726 $(EMACS_ROOT)\src\config.h \ |
727 $(SRC)\lisp.h \ | |
728 $(SRC)\buffer.h | |
729 | |
730 $(BLD)\nt.obj : \ | |
731 $(SRC)\nt.c \ | |
15140
f13ffba51542
(SUBSYSTEM) [NTGUI]: Remove conditional.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
732 $(SRC)\nt.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
|
733 $(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
|
734 $(SRC)\m\intel386.h \ |
9803 | 735 $(SRC)\config.h \ |
736 $(SRC)\lisp.h \ | |
737 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
738 $(SRC)\ntheap.h | |
739 | |
740 $(BLD)\ntheap.obj : \ | |
741 $(SRC)\ntheap.c \ | |
742 $(SRC)\ntheap.h | |
743 | |
744 $(BLD)\ntinevt.obj : \ | |
745 $(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
|
746 $(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 $(SRC)\m\intel386.h \ |
9803 | 748 $(SRC)\config.h \ |
749 $(SRC)\lisp.h \ | |
750 $(SRC)\frame.h \ | |
751 $(SRC)\blockinput.h \ | |
752 $(SRC)\termhooks.h | |
753 | |
754 $(BLD)\ntproc.obj : \ | |
755 $(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
|
756 $(SRC)\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
757 $(SRC)\m\intel386.h \ |
9803 | 758 $(SRC)\config.h \ |
759 $(SRC)\lisp.h \ | |
760 $(SRC)\nt.h \ | |
761 $(SRC)\vmstime.h \ | |
762 $(SRC)\systime.h | |
763 | |
764 $(BLD)\ntterm.obj : \ | |
765 $(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
|
766 $(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
|
767 $(SRC)\m\intel386.h \ |
9803 | 768 $(SRC)\config.h \ |
769 $(SRC)\lisp.h \ | |
770 $(SRC)\frame.h \ | |
771 $(SRC)\disptab.h \ | |
772 $(SRC)\termhooks.h \ | |
773 $(SRC)\ntinevt.h | |
774 | |
775 $(BLD)\prefix-args.obj : \ | |
776 $(SRC)\prefix-args.c | |
777 | |
778 $(BLD)\print.obj : \ | |
779 $(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
|
780 $(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
|
781 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 782 $(EMACS_ROOT)\src\config.h \ |
783 $(SRC)\lisp.h \ | |
784 $(SRC)\buffer.h \ | |
785 $(SRC)\frame.h \ | |
786 $(SRC)\window.h \ | |
787 $(SRC)\process.h \ | |
788 $(SRC)\termchar.h \ | |
789 $(SRC)\dispextern.h \ | |
790 $(SRC)\intervals.h | |
791 | |
792 $(BLD)\process.obj : \ | |
793 $(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
|
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 \ |
797 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
798 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
799 $(SRC)\systty.h \ | |
800 $(SRC)\window.h \ | |
801 $(SRC)\buffer.h \ | |
802 $(SRC)\process.h \ | |
803 $(SRC)\termhooks.h \ | |
804 $(SRC)\commands.h \ | |
805 $(SRC)\frame.h \ | |
806 $(SRC)\syssignal.h \ | |
807 $(SRC)\vmsproc.h \ | |
808 $(SRC)\syswait.h \ | |
809 $(SRC)\lisp.h \ | |
810 $(SRC)\vmstime.h \ | |
811 $(SRC)\systime.h \ | |
812 $(SRC)\termopts.h | |
813 | |
814 $(BLD)\ralloc.obj : \ | |
815 $(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
|
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)\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
|
820 $(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
|
821 $(SRC)\m\intel386.h \ |
9803 | 822 $(SRC)\config.h \ |
823 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
824 $(SRC)\getpagesize.h | |
825 | |
826 $(BLD)\regex.obj : \ | |
827 $(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
|
828 $(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
|
829 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 830 $(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
|
831 $(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
|
832 $(SRC)\m\intel386.h \ |
9803 | 833 $(SRC)\config.h \ |
834 $(SRC)\lisp.h \ | |
835 $(SRC)\buffer.h \ | |
836 $(SRC)\syntax.h \ | |
837 $(SRC)\regex.h | |
838 | |
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
839 $(BLD)\region-cache.obj : \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
840 $(SRC)\region-cache.c \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
841 $(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
|
842 $(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
|
843 $(EMACS_ROOT)\src\config.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
844 $(SRC)\lisp.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
845 $(SRC)\buffer.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
846 $(SRC)\region-cache.h |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
847 |
9803 | 848 $(BLD)\scroll.obj : \ |
849 $(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
|
850 $(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
|
851 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 852 $(EMACS_ROOT)\src\config.h \ |
853 $(SRC)\termchar.h \ | |
854 $(SRC)\lisp.h \ | |
855 $(SRC)\dispextern.h \ | |
856 $(SRC)\frame.h | |
857 | |
858 $(BLD)\search.obj : \ | |
859 $(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
|
860 $(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
|
861 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 862 $(EMACS_ROOT)\src\config.h \ |
863 $(SRC)\lisp.h \ | |
864 $(SRC)\syntax.h \ | |
865 $(SRC)\buffer.h \ | |
866 $(SRC)\commands.h \ | |
867 $(SRC)\blockinput.h \ | |
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
868 $(SRC)\regex.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
869 $(SRC)\region-cache.h |
9803 | 870 |
11742 | 871 $(BLD)\strftime.obj : \ |
872 $(SRC)\strftime.c \ | |
873 $(EMACS_ROOT)\src\s\windowsnt.h \ | |
874 $(EMACS_ROOT)\src\m\intel386.h \ | |
875 $(EMACS_ROOT)\src\config.h | |
876 $(CC) $(CFLAGS) -Dstrftime=emacs_strftime -Fo$@ strftime.c | |
877 | |
9803 | 878 $(BLD)\sunfns.obj : \ |
879 $(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
|
880 $(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
|
881 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 882 $(EMACS_ROOT)\src\config.h \ |
883 $(SRC)\lisp.h \ | |
884 $(SRC)\window.h \ | |
885 $(SRC)\buffer.h \ | |
886 $(SRC)\termhooks.h | |
887 | |
888 $(BLD)\syntax.obj : \ | |
889 $(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
|
890 $(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
|
891 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 892 $(EMACS_ROOT)\src\config.h \ |
893 $(SRC)\lisp.h \ | |
894 $(SRC)\commands.h \ | |
895 $(SRC)\buffer.h \ | |
896 $(SRC)\syntax.h | |
897 | |
898 $(BLD)\sysdep.obj : \ | |
899 $(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
|
900 $(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
|
901 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 902 $(EMACS_ROOT)\src\config.h \ |
903 $(SRC)\lisp.h \ | |
904 $(SRC)\blockinput.h \ | |
905 $(SRC)\dosfns.h \ | |
906 $(SRC)\msdos.h \ | |
907 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
908 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
909 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
910 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
911 $(SRC)\systty.h \ | |
912 $(SRC)\vmsproc.h \ | |
913 $(SRC)\syswait.h \ | |
914 $(SRC)\frame.h \ | |
915 $(SRC)\window.h \ | |
916 $(SRC)\termhooks.h \ | |
917 $(SRC)\termchar.h \ | |
918 $(SRC)\termopts.h \ | |
919 $(SRC)\dispextern.h \ | |
920 $(SRC)\process.h \ | |
921 $(SRC)\vmsdir.h \ | |
922 $(SRC)\ndir.h \ | |
923 $(SRC)\syssignal.h \ | |
924 $(SRC)\vmstime.h \ | |
925 $(SRC)\systime.h \ | |
926 $(SRC)\uaf.h \ | |
927 $(SRC)\vms-pwd.h \ | |
928 $(EMACS_ROOT)\src\acldef.h \ | |
929 $(EMACS_ROOT)\src\chpdef.h | |
930 | |
931 $(BLD)\term.obj : \ | |
932 $(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
|
933 $(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
|
934 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 935 $(EMACS_ROOT)\src\config.h \ |
936 $(SRC)\termchar.h \ | |
937 $(SRC)\termopts.h \ | |
938 $(SRC)\cm.h \ | |
939 $(SRC)\lisp.h \ | |
940 $(SRC)\frame.h \ | |
941 $(SRC)\disptab.h \ | |
942 $(SRC)\termhooks.h \ | |
943 $(SRC)\keyboard.h | |
944 | |
945 $(BLD)\termcap.obj : \ | |
946 $(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
|
947 $(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
|
948 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 949 $(EMACS_ROOT)\src\config.h \ |
950 $(EMACS_ROOT)\nt\inc\sys\file.h | |
951 | |
952 $(BLD)\terminfo.obj : \ | |
953 $(SRC)\terminfo.c | |
954 | |
955 $(BLD)\textprop.obj : \ | |
956 $(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
|
957 $(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
|
958 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 959 $(EMACS_ROOT)\src\config.h \ |
960 $(SRC)\lisp.h \ | |
961 $(SRC)\dispextern.h \ | |
962 $(SRC)\intervals.h \ | |
963 $(SRC)\buffer.h \ | |
964 $(SRC)\window.h | |
965 | |
966 $(BLD)\tparam.obj : \ | |
967 $(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
|
968 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
969 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 970 $(EMACS_ROOT)\src\config.h |
971 | |
972 $(BLD)\undo.obj : \ | |
973 $(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
|
974 $(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
|
975 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 976 $(EMACS_ROOT)\src\config.h \ |
977 $(SRC)\lisp.h \ | |
978 $(SRC)\buffer.h \ | |
979 $(SRC)\commands.h | |
980 | |
981 $(BLD)\unexnt.obj : \ | |
982 $(SRC)\unexnt.c \ | |
983 $(SRC)\ntheap.h | |
984 | |
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
985 $(BLD)\vm-limit.obj : \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
986 $(SRC)\vm-limit.c \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
987 $(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
|
988 $(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
|
989 $(EMACS_ROOT)\src\config.h \ |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
990 $(SRC)\mem-limits.h |
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
991 |
9803 | 992 $(BLD)\widget.obj : \ |
993 $(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
|
994 $(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
|
995 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 996 $(EMACS_ROOT)\src\config.h \ |
997 $(SRC)\lisp.h \ | |
998 $(SRC)\xterm.h \ | |
999 $(SRC)\frame.h \ | |
1000 $(SRC)\dispextern.h \ | |
1001 $(SRC)\widget.h \ | |
1002 $(SRC)\widgetprv.h | |
1003 | |
1004 $(BLD)\window.obj : \ | |
1005 $(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
|
1006 $(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
|
1007 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 1008 $(EMACS_ROOT)\src\config.h \ |
1009 $(SRC)\lisp.h \ | |
1010 $(SRC)\buffer.h \ | |
1011 $(SRC)\frame.h \ | |
1012 $(SRC)\window.h \ | |
1013 $(SRC)\commands.h \ | |
1014 $(SRC)\indent.h \ | |
1015 $(SRC)\termchar.h \ | |
1016 $(SRC)\disptab.h \ | |
1017 $(SRC)\keyboard.h | |
1018 | |
1019 $(BLD)\xdisp.obj : \ | |
1020 $(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
|
1021 $(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
|
1022 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 1023 $(EMACS_ROOT)\src\config.h \ |
1024 $(SRC)\lisp.h \ | |
1025 $(SRC)\frame.h \ | |
1026 $(SRC)\window.h \ | |
1027 $(SRC)\termchar.h \ | |
1028 $(SRC)\buffer.h \ | |
1029 $(SRC)\indent.h \ | |
1030 $(SRC)\commands.h \ | |
1031 $(SRC)\macros.h \ | |
1032 $(SRC)\disptab.h \ | |
1033 $(SRC)\termhooks.h \ | |
1034 $(SRC)\dispextern.h \ | |
1035 $(SRC)\intervals.h | |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1036 |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1037 $(BLD)\w32faces.obj: \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1038 $(EMACS_ROOT)\src\s\windowsnt.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1039 $(EMACS_ROOT)\src\m\intel386.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1040 $(EMACS_ROOT)\src\config.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1041 $(SRC)\w32faces.c \ |
15233 | 1042 $(SRC)\lisp.h \ |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1043 $(SRC)\w32term.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1044 $(SRC)\win32.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1045 $(SRC)\buffer.h \ |
15233 | 1046 $(SRC)\dispextern.h \ |
1047 $(SRC)\frame.h \ | |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1048 $(SRC)\blockinput.h \ |
15233 | 1049 $(SRC)\window.h \ |
1050 $(SRC)\intervals.h | |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1051 |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1052 $(BLD)\w32fns.obj: \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1053 $(EMACS_ROOT)\src\s\windowsnt.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1054 $(EMACS_ROOT)\src\m\intel386.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1055 $(EMACS_ROOT)\src\config.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1056 $(SRC)\w32fns.c \ |
15233 | 1057 $(SRC)\lisp.h \ |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1058 $(SRC)\w32term.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1059 $(SRC)\win32.h \ |
15233 | 1060 $(SRC)\frame.h \ |
1061 $(SRC)\window.h \ | |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1062 $(SRC)\buffer.h \ |
15233 | 1063 $(SRC)\dispextern.h \ |
1064 $(SRC)\keyboard.h \ | |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1065 $(SRC)\blockinput.h \ |
15233 | 1066 $(SRC)\paths.h \ |
1067 $(SRC)\ntheap.h \ | |
1068 $(SRC)\termhooks.h | |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1069 |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1070 $(BLD)\w32menu.obj: \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1071 $(EMACS_ROOT)\src\s\windowsnt.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1072 $(EMACS_ROOT)\src\m\intel386.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1073 $(EMACS_ROOT)\src\config.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1074 $(SRC)\w32menu.c \ |
15233 | 1075 $(SRC)\lisp.h \ |
1076 $(SRC)\termhooks.h \ | |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1077 $(SRC)\frame.h \ |
15233 | 1078 $(SRC)\window.h \ |
1079 $(SRC)\keyboard.h \ | |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1080 $(SRC)\blockinput.h \ |
15233 | 1081 $(SRC)\buffer.h |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1082 |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1083 $(BLD)\w32term.obj: \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1084 $(EMACS_ROOT)\src\s\windowsnt.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1085 $(EMACS_ROOT)\src\m\intel386.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1086 $(EMACS_ROOT)\src\config.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1087 $(SRC)\w32term.c \ |
15233 | 1088 $(SRC)\lisp.h \ |
1089 $(SRC)\blockinput.h \ | |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1090 $(SRC)\w32term.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1091 $(SRC)\win32.h \ |
15233 | 1092 $(SRC)\systty.h \ |
1093 $(SRC)\systime.h \ | |
1094 $(SRC)\frame.h \ | |
1095 $(SRC)\dispextern.h \ | |
1096 $(SRC)\termhooks.h \ | |
1097 $(SRC)\termopts.h \ | |
1098 $(SRC)\termchar.h \ | |
1099 $(SRC)\gnu.h \ | |
1100 $(SRC)\disptab.h \ | |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1101 $(SRC)\buffer.h \ |
15233 | 1102 $(SRC)\window.h \ |
15238 | 1103 $(SRC)\keyboard.h \ |
15233 | 1104 $(SRC)\intervals.h |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1105 |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1106 $(BLD)\w32select.obj: \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1107 $(EMACS_ROOT)\src\s\windowsnt.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1108 $(EMACS_ROOT)\src\m\intel386.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1109 $(EMACS_ROOT)\src\config.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1110 $(SRC)\w32select.c \ |
15233 | 1111 $(SRC)\lisp.h \ |
1112 $(SRC)\w32term.h \ | |
1113 $(SRC)\win32.h \ | |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1114 $(SRC)\dispextern.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1115 $(SRC)\frame.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1116 $(SRC)\blockinput.h |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1117 |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1118 $(BLD)\w32reg.obj: \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1119 $(EMACS_ROOT)\src\s\windowsnt.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1120 $(EMACS_ROOT)\src\m\intel386.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1121 $(EMACS_ROOT)\src\config.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1122 $(SRC)\w32reg.c \ |
15233 | 1123 $(SRC)\lisp.h \ |
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1124 $(SRC)\w32term.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1125 $(SRC)\win32.h \ |
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1126 $(SRC)\blockinput.h |