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