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