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