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