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