annotate src/makefile.nt @ 14472:8979515dac09 libc-960203 libc-960204 libc-960205 libc-960206 libc-960207 libc-960208 libc-960209 libc-960210

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