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